41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
{{ define "title" -}}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editProductPage*/ -}}
|
|
{{printf (pgettext "Edit Product “%s”" "title") .ProductName }}
|
|
{{- end }}
|
|
|
|
{{ define "breadcrumbs" -}}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editProductPage*/ -}}
|
|
<nav data-hx-target="main" data-hx-boost="true">
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a href="{{ companyURI "/products"}}">{{( pgettext "Products" "title" )}}</a> /
|
|
<a>{{ .ProductName }}</a>
|
|
</p>
|
|
</nav>
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editProductPage*/ -}}
|
|
<section id="edit-product-dialog-content" data-hx-target="main">
|
|
<h2>{{printf (pgettext "Edit Product “%s”" "title") .ProductName }}</h2>
|
|
<form method="POST" action="{{ companyURI "/products/" }}{{ .Slug }}" data-hx-boost="true">
|
|
{{ csrfToken }}
|
|
{{ putMethod }}
|
|
|
|
{{ with .Form }}
|
|
<div class="product-data">
|
|
{{ template "input-field" .Name | addInputAttr "autofocus" }}
|
|
{{ template "input-field" .Price }}
|
|
{{ template "select-field" .Tax }}
|
|
{{ template "tags-field" .Tags }}
|
|
{{ template "input-field" .Description }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<fieldset>
|
|
<button class="primary" type="submit">{{( pgettext "Save" "action" )}}</button>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
{{- end }}
|