Files
Gardomatic/internal/web/templates/partials/garden_fields.tmpl
T
kleiax 904d14b64c
CI / test (push) Canceled after 0s
Initial commit
2026-09-12 22:22:17 +02:00

12 lines
658 B
Cheetah

{{define "garden_fields"}}
{{$form := .Form}}
<input type='hidden' name='csrf_token' value='{{.CSRFToken}}'>
<label for='name'>Name</label>
<input id='name' name='name' value='{{$form.Name}}' required {{if .Autofocus}}autofocus{{end}}>
{{with index $form.Errors "name"}}<p class='field-error'>{{.}}</p>{{end}}
<label for='description'>Beschreibung</label>
<textarea id='description' name='description' rows='3'>{{$form.Description}}</textarea>
{{with index $form.Errors "description"}}<p class='field-error'>{{.}}</p>{{end}}
{{template "image_editor" (dict "ImageData" $form.ImageData "ImageID" $form.ImageID "Images" .Images "GardenID" .GardenID)}}
{{end}}