{{ define "title" -}} {{ printf ( pgettext "Edit Invoice ā€œ%sā€" "title" ) .Number }} {{- end }} {{ define "content" }} {{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editInvoicePage*/ -}}

{{ printf (pgettext "Edit Invoice ā€œ%sā€" "title") .Number }}

{{ csrfToken }} {{ with .Form -}} {{ template "select-field" .Customer }} {{ template "hidden-field" .Number }} {{ template "hidden-field" .Date }} {{ template "tags-field" .Tags }} {{ template "select-field" .PaymentMethod }} {{ template "select-field" .InvoiceStatus }} {{ template "input-field" .Notes }} {{- range $product := .Products }}
{{ template "hidden-field" .InvoiceProductId }} {{ template "hidden-field" .ProductId }} {{ template "input-field" .Name }} {{ template "input-field" .Price }} {{ template "input-field" .Quantity }} {{ template "input-field" .Discount }} {{ template "input-field" .Description }} {{ template "select-field" .Tax }}
{{- end }} {{- end }} {{- range $tax := .Taxes }} {{- end }}
{{(pgettext "Subtotal" "title")}} {{ .Subtotal | formatPrice }}
{{ index . 0 }} {{ index . 1 | formatPrice }}
{{(pgettext "Total" "title")}} {{ .Total | formatPrice }}
{{- end }}