31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
|
{{ define "title" -}}
|
||
|
{{( pgettext "New Product" "title" )}}
|
||
|
{{- end }}
|
||
|
|
||
|
{{ define "content" }}
|
||
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.productForm*/ -}}
|
||
|
<nav>
|
||
|
<p>
|
||
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
||
|
<a href="{{ companyURI "/products"}}">{{( pgettext "Products" "title" )}}</a> /
|
||
|
<a>{{( pgettext "New Product" "title" )}}</a>
|
||
|
</p>
|
||
|
</nav>
|
||
|
<section class="dialog-content">
|
||
|
<h2>{{(pgettext "New Product" "title")}}</h2>
|
||
|
<form method="POST" action="{{ companyURI "/products" }}">
|
||
|
{{ csrfToken }}
|
||
|
|
||
|
{{ template "input-field" .Name | addInputAttr "autofocus" }}
|
||
|
{{ template "input-field" .Description }}
|
||
|
{{ template "input-field" .Price }}
|
||
|
{{ template "select-field" .Tax }}
|
||
|
|
||
|
<fieldset>
|
||
|
<button class="primary" type="submit">{{( pgettext "New product" "action" )}}</button>
|
||
|
</fieldset>
|
||
|
|
||
|
</form>
|
||
|
</section>
|
||
|
{{- end }}
|