{{ define "title" -}} {{( pgettext "New Invoice" "title" )}} {{- end }} {{ define "breadcrumbs" -}} {{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.newInvoicePage*/ -}} {{( pgettext "Home" "title" )}} / {{( pgettext "Invoices" "title" )}} / {{( pgettext "New Invoice" "title" )}} {{- end }} {{ define "content" }} {{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.newInvoicePage*/ -}} {{(pgettext "New Invoice" "title")}} {{ csrfToken }} {{ with .Form -}} {{ template "hidden-select-field" .InvoiceStatus }} {{ template "select-field" .Customer }} {{ template "input-field" .Number }} {{ template "input-field" .Date }} {{ template "tags-field" .Tags }} {{ template "select-field" .PaymentMethod }} {{ template "input-field" .Notes }} {{- range $product := .Products }} {{ 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 }} {{(pgettext "Subtotal" "title")}} {{ .Subtotal | formatPrice }} {{- range $tax := .Taxes }} {{ index . 0 }} {{ index . 1 | formatPrice }} {{- end }} {{(pgettext "Total" "title")}} {{ .Total | formatPrice }} {{( pgettext "Add products" "action" )}} {{( pgettext "Update" "action" )}} {{( pgettext "New invoice" "action" )}} {{- end }}
{{( pgettext "Home" "title" )}} / {{( pgettext "Invoices" "title" )}} / {{( pgettext "New Invoice" "title" )}}