16 lines
376 B
HTML
16 lines
376 B
HTML
|
{{ define "page-content" }}
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>User</td>
|
||
|
<td>Role</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{ range $user := .}}<tr>
|
||
|
<td>{{ $user.Username }}</td>
|
||
|
<td>{{ $user.Role }}</td>
|
||
|
</tr>{{ end }}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{{ end }}
|