cake-order-tracker/server/templates/cakes.gohtml
2025-07-07 11:30:28 +02:00

21 lines
381 B
Text

{{define "title"}}
Cakes
{{end}}
{{define "main"}}
<main>
<table>
<tr>
<th></th>
<th>Name</th>
<th>Price</th>
</tr>
{{range .}}
<tr>
<th><a href="/cake/{{.ID}}">edit</a></th>
<th>{{.Name}}</th>
<th>{{.Price}}</th>
</tr>
{{end}}
</table>
</main>
{{end}}