numerus/web/template/contacts/index.gohtml

56 lines
2.0 KiB
Plaintext
Raw Normal View History

{{ define "title" -}}
2023-02-03 12:58:10 +00:00
{{( pgettext "Contacts" "title" )}}
{{- end }}
{{ define "breadcrumbs" -}}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.ContactsIndexPage*/ -}}
2023-02-03 12:58:10 +00:00
<nav>
<p>
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
<a>{{( pgettext "Contacts" "title" )}}</a>
</p>
<p>
<a class="primary button"
data-hx-push-url="false" data-hx-swap="beforeend" data-hx-boost="true"
2023-02-03 12:58:10 +00:00
href="{{ companyURI "/contacts/new" }}">{{( pgettext "New contact" "action" )}}</a>
</p>
</nav>
{{- end }}
{{ define "content" }}
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.ContactsIndexPage*/ -}}
2023-02-03 12:58:10 +00:00
<table>
<thead>
<tr>
<th>{{( pgettext "All" "contact" )}}</th>
<th>{{( pgettext "Customer" "title" )}}</th>
<th>{{( pgettext "Email" "title" )}}</th>
<th>{{( pgettext "Phone" "title" )}}</th>
<th>{{( pgettext "Tags" "title" )}}</th>
2023-02-03 12:58:10 +00:00
</tr>
</thead>
<tbody>
2023-02-03 12:58:10 +00:00
{{ with .Contacts }}
{{- range $contact := . }}
2023-02-03 12:58:10 +00:00
<tr>
<td></td>
<td><a href="{{ companyURI "/contacts/"}}{{ .Slug }}" data-hx-push-url="false" data-hx-swap="beforeend" data-hx-boost="true">{{ .Name }}</a></td>
2023-02-03 12:58:10 +00:00
<td><a href="mailto:{{ .Email }}">{{ .Email }}</a></td>
<td><a href="tel:{{ .Phone }}">{{ .Phone }}</a></td>
<td>
{{- range $index, $tag := .Tags }}
{{- if gt $index 0 }}, {{ end -}}
<a href="?tag={{ . }}" data-hx-target="main" data-hx-boost="true">{{ . }}</a>
{{- end }}
</td>
2023-02-03 12:58:10 +00:00
</tr>
{{- end }}
{{ else }}
<tr>
<td colspan="5">{{( gettext "No contacts added yet." )}}</td>
2023-02-03 12:58:10 +00:00
</tr>
{{ end }}
</tbody>
</table>
{{- end }}