cake-order-tracker/server/templates/cakes.gohtml
2026-06-10 20:42:06 +02:00

37 lines
969 B
Text

{{define "title"}}
Ciasta
{{end}}
{{define "main"}}
<main>
<div class="toolbar">
<a href="/cake" class="btn-primary">
<i class="fa-solid fa-plus"></i>
Nowe ciasto
</a>
</div>
<div id="results-table" class="scrollable">
<table>
<thead>
<tr>
<th></th>
<th>Nazwa</th>
<th>Cena</th>
<th>Kategoria</th>
<th>Dostępność</th>
</tr>
</thead>
<tbody>
{{range .}}
<tr>
<th><a href="/cake/{{.ID}}">Edytuj</a></th>
<th>{{.Name}}</th>
<th>{{.Price}} PLN</th>
<th>{{.Category}}</th>
<th>{{.Availability}}</th>
</tr>
{{end}}
</tbody>
</table>
</div>
</main>
{{end}}