21 lines
326 B
HTML
21 lines
326 B
HTML
<p>
|
|
Here's the list of all currently registered users.
|
|
</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>id</th>
|
|
<th>username</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ for i, u in ipairs(users) do }}
|
|
<tr>
|
|
<td>{{ u.id }}</td>
|
|
<td><a href="/admin/users/{{ u.id }}">{{ u.username }}</a></td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|