45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "Contacts" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a>{{( pgettext "Contacts" "title" )}}</a>
|
|
</p>
|
|
<p>
|
|
<a class="primary button"
|
|
href="{{ companyURI "/contacts/new" }}">{{( pgettext "New contact" "action" )}}</a>
|
|
</p>
|
|
</nav>
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.ContactsIndexPage*/ -}}
|
|
<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 $contact := . }}
|
|
<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 }}
|