Compare commits

..

No commits in common. "268ab9989a9f1725d3736207b5a73078d93e02eb" and "a30e015639cfd85f1381b3ff822aa83923a9558f" have entirely different histories.

2 changed files with 4 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{{ define "title" -}}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editExpensePage*/ -}}
{{ printf ( pgettext "Edit Expense “%s”" "title" ) (or .Form.InvoiceNumber.Value .Slug) }}
{{ printf ( pgettext "Edit Expense “%s”" "title" ) .Slug }}
{{- end }}
{{ define "breadcrumbs" -}}
@ -9,7 +9,7 @@
<p>
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
<a href="{{ companyURI "/expenses"}}">{{( pgettext "Expenses" "title" )}}</a> /
<a>{{ or .Form.InvoiceNumber.Value .Slug }}</a>
<a>{{ .Slug }}</a>
</p>
</nav>
{{- end }}
@ -17,7 +17,7 @@
{{ define "content" }}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.editExpensePage*/ -}}
<section id="new-expense-dialog-content" data-hx-target="main">
<h2>{{ template "title" . }}</h2>
<h2>{{ printf (pgettext "Edit Expense “%s”" "title") .Slug }}</h2>
<form enctype="multipart/form-data" method="POST" action="{{ companyURI "/expenses/" }}{{ .Slug }}"
data-hx-boost="true"
data-hx-swap="innerHTML show:false"

View File

@ -82,11 +82,7 @@
<tr>
<td>{{ .InvoicerName }}</td>
<td>{{ .InvoiceDate|formatDate }}</td>
<td>
{{- if .InvoiceNumber -}}
<a href="{{ companyURI "/expenses/"}}{{ .Slug }}">{{ .InvoiceNumber }}</a>
{{- end -}}
</td>
<td>{{ .InvoiceNumber }}</td>
<td class="expense-status-{{ .Status }}">{{ .StatusLabel }}</td>
<td
data-hx-get="{{companyURI "/expenses/"}}{{ .Slug }}/tags/edit"