Added HTML

This commit is contained in:
2026-06-05 19:00:48 +02:00
parent 0a44df319d
commit 1a0797ef19
9 changed files with 265 additions and 2 deletions

View File

@@ -0,0 +1,32 @@
<table>
<thead>
<tr>
<th>Name</th>
<th>Kategorie</th>
<th>Gesamt</th>
<th>Frei</th>
</tr>
</thead>
<tbody>
{{ range . }}
<tr>
<td>{{ .Name }}</td>
<td>{{ .Category }}</td>
<td>{{ .TotalQuantity }}</td>
<td>{{ .FreeQuantity }}</td>
</tr>
{{ end }}
</tbody>
</table>