Initial commit
CI / test (push) Canceled after 0s

This commit is contained in:
2026-09-12 22:22:17 +02:00
commit 904d14b64c
314 changed files with 31884 additions and 0 deletions
@@ -0,0 +1,16 @@
{{define "title"}}Garten anlegen{{end}}
{{define "main"}}
<section class='panel narrow'>
<p class='eyebrow'>Garten</p>
<h2>Garten anlegen</h2>
{{$form := .Form}}
<form method='POST'>
{{template "garden_fields" (dict "Form" $form "CSRFToken" .CSRFToken "Images" .Images "GardenID" 0 "Autofocus" true)}}
<div class='actions'>
<button type='submit'>Garten anlegen</button>
<a href='{{webPath "gardens"}}'>Abbrechen</a>
</div>
</form>
</section>
{{end}}