2023-05-03 10:46:25 +00:00
|
|
|
{{ define "title" -}}
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.expensesIndexPage*/ -}}
|
|
|
|
{{( pgettext "Expenses" "title" )}}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{ define "breadcrumbs" -}}
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.expensesIndexPage*/ -}}
|
|
|
|
<nav data-hx-boost="true" data-hx-target="main">
|
|
|
|
<p>
|
|
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
|
|
<a>{{( pgettext "Expenses" "title" )}}</a>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a class="primary button"
|
|
|
|
href="{{ companyURI "/expenses/new" }}">{{( pgettext "New expense" "action" )}}</a>
|
|
|
|
</p>
|
|
|
|
</nav>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{ define "content" }}
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.expensesIndexPage*/ -}}
|
2023-05-07 20:49:52 +00:00
|
|
|
<div aria-label="{{( pgettext "Filters" "title" )}}">
|
|
|
|
<form method="GET" action="{{ companyURI "/expenses"}}"
|
|
|
|
data-hx-target="main" data-hx-boost="true" data-hx-trigger="change,search,submit"
|
|
|
|
>
|
|
|
|
{{ with .Filters }}
|
|
|
|
{{ template "select-field" .Customer }}
|
|
|
|
{{ template "input-field" .FromDate }}
|
|
|
|
{{ template "input-field" .ToDate }}
|
|
|
|
{{ template "input-field" .InvoiceNumber }}
|
|
|
|
{{ template "tags-field" .Tags | addTagsAttr (print `data-conditions="` .TagsCondition.Name `-field"`) }}
|
|
|
|
{{ template "toggle-field" .TagsCondition }}
|
|
|
|
{{ end }}
|
|
|
|
<button type="submit">{{( pgettext "Filter" "action" )}}</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-05-03 10:46:25 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-05-06 09:08:21 +00:00
|
|
|
<th>{{( pgettext "All" "expense" )}}</th>
|
2023-05-03 10:46:25 +00:00
|
|
|
<th>{{( pgettext "Contact" "title" )}}</th>
|
|
|
|
<th>{{( pgettext "Invoice Date" "title" )}}</th>
|
|
|
|
<th>{{( pgettext "Invoice Number" "title" )}}</th>
|
2023-05-06 09:08:21 +00:00
|
|
|
<th>{{( pgettext "Tags" "title" )}}</th>
|
2023-05-03 10:46:25 +00:00
|
|
|
<th>{{( pgettext "Amount" "title" )}}</th>
|
2023-05-06 09:08:21 +00:00
|
|
|
<th>{{( pgettext "Actions" "title" )}}</th>
|
2023-05-03 10:46:25 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ with .Expenses }}
|
|
|
|
{{- range . }}
|
|
|
|
<tr>
|
|
|
|
<td></td>
|
2023-05-06 09:08:21 +00:00
|
|
|
<td>{{ .InvoicerName }}</td>
|
2023-05-03 10:46:25 +00:00
|
|
|
<td>{{ .InvoiceDate|formatDate }}</td>
|
|
|
|
<td>{{ .InvoiceNumber }}</td>
|
2023-05-08 10:58:54 +00:00
|
|
|
<td
|
|
|
|
data-hx-get="{{companyURI "/expenses/"}}{{ .Slug }}/tags/edit"
|
|
|
|
data-hx-target="this"
|
|
|
|
data-hx-swap="outerHTML"
|
|
|
|
>
|
2023-05-03 10:46:25 +00:00
|
|
|
{{- range $index, $tag := .Tags }}
|
|
|
|
{{- if gt $index 0 }}, {{ end -}}
|
|
|
|
{{ . }}
|
|
|
|
{{- end }}
|
|
|
|
</td>
|
|
|
|
<td class="numeric">{{ .Amount | formatPrice }}</td>
|
2023-05-06 09:08:21 +00:00
|
|
|
<td class="actions">
|
|
|
|
<details class="menu">
|
|
|
|
<summary><i class="ri-more-line"></i></summary>
|
|
|
|
<ul role="menu" class="action-menu">
|
|
|
|
<li role="presentation">
|
|
|
|
<a role="menuitem" href="{{ companyURI "/expenses"}}/{{ .Slug }}"
|
|
|
|
data-hx-target="main" data-hx-boost="true"
|
|
|
|
>
|
|
|
|
<i class="ri-edit-line"></i>
|
|
|
|
{{( pgettext "Edit" "action" )}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</details>
|
|
|
|
</td>
|
2023-05-03 10:46:25 +00:00
|
|
|
</tr>
|
|
|
|
{{- end }}
|
|
|
|
{{ else }}
|
|
|
|
<tr>
|
2023-05-06 09:08:21 +00:00
|
|
|
<td colspan="7">{{( gettext "No expenses added yet." )}}</td>
|
2023-05-03 10:46:25 +00:00
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{{- end }}
|