40 lines
1.4 KiB
Plaintext
40 lines
1.4 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 }}"
|
|
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 }}
|
|
|
|
<footer>
|
|
<button class="primary" type="submit">{{( pgettext "Update" "action" )}}</button>
|
|
</footer>
|
|
</form>
|
|
</section>
|
|
{{- end }}
|