38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
{{ define "title" -}}
|
|
{{printf (pgettext "Edit Contact “%s”" "title") .BusinessName.Val }}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.contactForm*/ -}}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a href="{{ companyURI "/contacts"}}">{{( pgettext "Contacts" "title" )}}</a> /
|
|
<a>{{ .BusinessName.Val }}</a>
|
|
</p>
|
|
</nav>
|
|
<section class="dialog-content">
|
|
<h2>{{printf (pgettext "Edit Contact “%s”" "title") .BusinessName.Val }}</h2>
|
|
<form method="POST">
|
|
{{ csrfToken }}
|
|
{{ putMethod }}
|
|
|
|
{{ template "input-field" .BusinessName }}
|
|
{{ template "input-field" .VATIN }}
|
|
{{ template "input-field" .TradeName }}
|
|
{{ template "input-field" .Phone }}
|
|
{{ template "input-field" .Email }}
|
|
{{ template "input-field" .Web }}
|
|
{{ template "input-field" .Address | addInputAttr `class="width-2x"` }}
|
|
{{ template "input-field" .City }}
|
|
{{ template "input-field" .Province }}
|
|
{{ template "input-field" .PostalCode }}
|
|
{{ template "select-field" .Country | addSelectAttr `class="width-fixed"` }}
|
|
|
|
<fieldset>
|
|
<button class="primary" type="submit">{{( pgettext "Update contact" "action" )}}</button>
|
|
</fieldset>
|
|
</form>
|
|
</section>
|
|
{{- end }}
|