37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "Invoices" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a>{{( pgettext "Invoices" "title" )}}</a>
|
|
</p>
|
|
<p>
|
|
<a class="primary button"
|
|
href="{{ companyURI "/invoices/new" }}">{{( pgettext "New invoice" "action" )}}</a>
|
|
</p>
|
|
</nav>
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.InvoicesIndexPage*/ -}}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{( pgettext "All" "invoice" )}}</th>
|
|
<th>{{( pgettext "Date" "title" )}}</th>
|
|
<th>{{( pgettext "Invoice Num." "title" )}}</th>
|
|
<th>{{( pgettext "Customer" "title" )}}</th>
|
|
<th>{{( pgettext "Status" "title" )}}</th>
|
|
<th>{{( pgettext "Label" "title" )}}</th>
|
|
<th>{{( pgettext "Download" "title" )}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="7">{{( gettext "No invoices added yet." )}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
{{- end }}
|