This commit is contained in:
Eden Kirin
2023-10-23 11:29:40 +02:00
commit f0e323f2ce
10 changed files with 451 additions and 0 deletions

15
views/table_component.jet Normal file
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 }}