Restructure app

This commit is contained in:
Eden Kirin
2023-10-23 23:05:18 +02:00
parent f0e323f2ce
commit 002f6a3d06
11 changed files with 250 additions and 10 deletions

View File

@ -0,0 +1,15 @@
{{ block usersTable(users) }}
<p>blablabla</p>
<table class="table">
<tbody>
{{ range users }}
<tr>
<td>{{ .firstName }}</td>
<td>{{ .lastName }}</td>
<td>{{ .email }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}