Files
Eden Kirin 7024cd0de9 User edit
2023-10-26 00:13:16 +02:00

25 lines
666 B
Plaintext

{{ block usersTable(users) }}
<table class="table table-hover">
<thead>
<tr>
<th>ID</th>
<th>First name</th>
<th>Last name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
{{ range users }}
<tr>
<td>
<a href="/users/{{ .Id }}">{{ .Id }}</a>
</td>
<td>{{ .FirstName }}</td>
<td>{{ .LastName }}</td>
<td>{{ .Email }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}