17 lines
519 B
Cheetah
17 lines
519 B
Cheetah
{{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}}
|