18 lines
480 B
HTML
18 lines
480 B
HTML
<div class="block">
|
|
<h1 class="title">All Users</h1>
|
|
|
|
<table class="table table-bordered is-fullwidth">
|
|
<tr>
|
|
<th>ID</th><th>Username</th><th>Role</th><th>Actions</th>
|
|
</tr>
|
|
|
|
<repeat group="{{ @users }}" value="{{ @u }}">
|
|
<tr>
|
|
<td>{{ @u.id }}</td>
|
|
<td>{{ @u.username }}</td>
|
|
<td>{{ @u.role_name }} ( {{ @u.role }} )</td>
|
|
</tr>
|
|
</repeat>
|
|
|
|
</table>
|
|
</div> |