2023-02-04 10:32:39 +00:00
|
|
|
{{ define "title" -}}
|
|
|
|
{{( pgettext "New Product" "title" )}}
|
|
|
|
{{- end }}
|
|
|
|
|
2023-03-20 12:09:52 +00:00
|
|
|
{{ define "breadcrumbs" -}}
|
2023-02-04 10:32:39 +00:00
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.productForm*/ -}}
|
2023-04-02 14:10:13 +00:00
|
|
|
<nav data-hx-target="main" data-hx-boost="true">
|
2023-02-04 10:32:39 +00:00
|
|
|
<p>
|
|
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
|
|
<a href="{{ companyURI "/products"}}">{{( pgettext "Products" "title" )}}</a> /
|
|
|
|
<a>{{( pgettext "New Product" "title" )}}</a>
|
|
|
|
</p>
|
|
|
|
</nav>
|
2023-03-20 12:09:52 +00:00
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{ define "content" }}
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.productForm*/ -}}
|
2023-05-23 21:13:21 +00:00
|
|
|
<section id="new-product-dialog-content" data-hx-target="main">
|
2023-02-04 10:32:39 +00:00
|
|
|
<h2>{{(pgettext "New Product" "title")}}</h2>
|
2023-04-25 13:28:55 +00:00
|
|
|
<form method="POST" action="{{ companyURI "/products" }}" data-hx-boost="true">
|
2023-02-04 10:32:39 +00:00
|
|
|
{{ csrfToken }}
|
2023-05-23 21:13:21 +00:00
|
|
|
<div class="product-data">
|
2023-02-04 10:32:39 +00:00
|
|
|
{{ template "input-field" .Name | addInputAttr "autofocus" }}
|
|
|
|
{{ template "input-field" .Price }}
|
|
|
|
{{ template "select-field" .Tax }}
|
2023-03-26 11:51:57 +00:00
|
|
|
{{ template "tags-field" .Tags }}
|
2023-05-23 21:13:21 +00:00
|
|
|
{{ template "input-field" .Description }}
|
|
|
|
</div>
|
2023-02-04 10:32:39 +00:00
|
|
|
<fieldset>
|
2023-05-26 11:38:04 +00:00
|
|
|
<button class="primary" type="submit">{{( pgettext "Save" "action" )}}</button>
|
2023-02-04 10:32:39 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
{{- end }}
|