todo/frontend/templates/users.html

21 lines
546 B
HTML

{{ define "users" }}
<h1 class="text-3xl mb-8">Users</h1>
<div class="flex items-center justify-center!">
<table class="border border-separate table-fixed" style="max-width: 50%;">
<thead>
<tr>
<th>First name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
{{ range .Users }}
<tr>
<td>{{ .FirstName }}</td>
<td>{{ .Age }}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ end }}