numerus/web/template/payments/edit.gohtml

42 lines
1.5 KiB
Plaintext

{{ define "title" -}}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.PaymentForm*/ -}}
{{ printf ( pgettext "Edit Payment “%s”" "title" ) .Description }}
{{- end }}
{{ define "breadcrumbs" -}}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.PaymentForm*/ -}}
<nav data-hx-target="main" data-hx-boost="true">
<p>
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
<a href="{{ companyURI "/payments"}}">{{( pgettext "Payments" "title" )}}</a> /
<a>{{ .Description }}</a>
</p>
</nav>
{{- end }}
{{ define "content" }}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.PaymentForm*/ -}}
<section data-hx-target="main">
<h2>{{ template "title" . }}</h2>
<form method="POST" action="{{ companyURI "/payments/" }}{{ .Slug }}"
enctype="multipart/form-data"
data-hx-swap="innerHTML show:false"
data-hx-boost="true"
>
{{ csrfToken }}
{{ putMethod }}
{{ template "select-field" .PaymentAccount }}
{{ template "input-field" .Description }}
{{ template "input-field" .PaymentDate }}
{{ template "input-field" .Amount }}
{{ template "tags-field" .Tags }}
{{ template "file-field" .File }}
<footer>
<button class="primary" type="submit">{{( pgettext "Update" "action" )}}</button>
</footer>
</form>
</section>
{{- end }}