35 lines
855 B
Plaintext
35 lines
855 B
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "Contacts" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
<a class="primary button" href="{{ companyURI "/contacts/new" }}">{{( pgettext "New contact" "action" )}}</a>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{( pgettext "All" "contact" )}}</th>
|
|
<th>{{( pgettext "Customer" "title" )}}</th>
|
|
<th>{{( pgettext "Email" "title" )}}</th>
|
|
<th>{{( pgettext "Phone" "title" )}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ with .Contacts }}
|
|
{{- range $tax := . }}
|
|
<tr>
|
|
<td></td>
|
|
<td><a href="{{ companyURI "/contacts/"}}{{ .Slug }}">{{ .Name }}</a></td>
|
|
<td><a href="mailto:{{ .Email }}">{{ .Email }}</a></td>
|
|
<td><a href="tel:{{ .Phone }}">{{ .Phone }}</a></td>
|
|
</tr>
|
|
{{- end }}
|
|
{{ else }}
|
|
<tr>
|
|
<td colspan="4">{{( gettext "No contacts added yet." )}}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{- end }}
|