camper/web/templates/admin/season/form.gohtml

81 lines
2.9 KiB
Plaintext
Raw Normal View History

<!--
SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog>
SPDX-License-Identifier: AGPL-3.0-only
-->
{{ define "title" -}}
{{- /*gotype: dev.tandem.ws/tandem/camper/pkg/season.seasonForm*/ -}}
{{ if .Slug}}
{{( pgettext "Edit Season" "title" )}}
{{ else }}
{{( pgettext "New Season" "title" )}}
{{ end }}
{{- end }}
{{ define "breadcrumb" -}}
<li><a href="/admin/seasons">{{( pgettext "Seasons" "title" )}}</a></li>
{{- end }}
{{ define "content" -}}
{{- /*gotype: dev.tandem.ws/tandem/camper/pkg/season.seasonForm*/ -}}
<form
{{ if .Slug }}
data-hx-put="/admin/seasons/{{ .Slug }}"
{{ else }}
action="/admin/seasons" method="post"
{{ end }}
>
<h2>
{{ if .Slug }}
{{( pgettext "Edit Season" "title" )}}
{{ else }}
{{( pgettext "New Season" "title" )}}
{{ end }}
</h2>
{{ CSRFInput }}
<fieldset {{template "init-lang" . }}>
{{ if .Slug }}
{{ with .Active -}}
<label>
<input type="checkbox" name="{{ .Name }}" {{ if .Checked}}checked{{ end }}
{{ template "error-attrs" . }}>
{{( pgettext "Active" "season" )}}<br>
</label>
{{ template "error-message" . }}
{{- end }}
{{ else }}
<input type="hidden" name="{{ .Active.Name }}" value="true">
{{ end }}
{{ with .Name -}}
<fieldset>
<legend>{{( pgettext "Name" "input")}}</legend>
{{ template "lang-selector" . }}
{{ range $lang, $input := . -}}
<label x-cloak x-show="lang === '{{ $lang }}'"><span>{{ $lang }}</span><br>
<input type="text" name="{{ $input.Name }}" value="{{ $input.Val }}"
{{ template "error-attrs" $input }}><br>
</label>
{{- end }}
{{ template "error-message" . }}
</fieldset>
{{- end }}
{{ with .Color -}}
<label>
{{( pgettext "Color" "input")}}<br>
<input type="color" name="{{ .Name }}" value="{{ .Val }}"
required {{ template "error-attrs" . }}><br>
</label>
{{ template "error-message" . }}
{{- end }}
</fieldset>
<footer>
<button type="submit">
{{ if .Slug }}
{{( pgettext "Update" "action" )}}
{{ else }}
{{( pgettext "Add" "action" )}}
{{ end }}
</button>
</footer>
</form>
{{- end }}