init
All checks were successful
release-tag / release-image (push) Successful in 2m3s

This commit is contained in:
2026-05-04 22:25:50 +02:00
parent be81c2bf92
commit 270c13af5b
21 changed files with 1839 additions and 1 deletions

View File

@@ -0,0 +1 @@
{{define "content"}}<h1>Hersteller</h1><section class="grid"><form method="post" class="card form"><h2>Hersteller pflegen</h2><label>Name<input name="name" required></label><label>Website<input name="website" type="url" placeholder="https://..."></label><label>Notizen<textarea name="notes" rows="4"></textarea></label><button>Speichern</button></form><section class="card"><h2>Liste</h2><table><thead><tr><th>Name</th><th>Website</th><th>Notizen</th></tr></thead><tbody>{{range .Manufacturers}}<tr><td><strong>{{.Name}}</strong></td><td>{{if .Website}}<a href="{{.Website}}" rel="noopener noreferrer">Website</a>{{end}}</td><td>{{.Notes}}</td></tr>{{end}}</tbody></table></section></section>{{end}}{{template "base" .}}