https://www.youtube.com/watch?v=yBXs_gtSmUc&list=PLU2ftbIeotGpAYRP9Iv2KLIwK36-o_qYk&index=12
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
<#import "parts/common.ftl" as com>
|
|
<@com.page>
|
|
<div class="container mt-4">
|
|
<table class="table table-striped table-hover">
|
|
<thead class="table-sub-heading-color">
|
|
<tr>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Role</th>
|
|
<th scope="col">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<#list users as user>
|
|
<tr>
|
|
<td>${user.username}</td>
|
|
<td>
|
|
<#list user.roles as role>
|
|
<span class="badge badge-primary">${role}</span>
|
|
<#sep> </#list>
|
|
</td>
|
|
<td>
|
|
<a href="/users/${user.id}" class="btn btn-sm btn-outline-primary">Edit</a>
|
|
</td>
|
|
</tr>
|
|
</#list>
|
|
</tbody>
|
|
</table>
|
|
<a href="/main" class="btn btn-primary">Main page</a>
|
|
</div>
|
|
</@com.page> |