43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
{{ define "title" -}}
|
|
{{( pgettext "Products" "title" )}}
|
|
{{- end }}
|
|
|
|
{{ define "content" }}
|
|
<nav>
|
|
<p>
|
|
<a href="{{ companyURI "/" }}">{{( pgettext "Home" "title" )}}</a> /
|
|
<a>{{( pgettext "Products" "title" )}}</a>
|
|
</p>
|
|
<p>
|
|
<a class="primary button"
|
|
href="{{ companyURI "/products/new" }}">{{( pgettext "New product" "action" )}}</a>
|
|
</p>
|
|
</nav>
|
|
|
|
{{- /*gotype: dev.tandem.ws/tandem/numerus/pkg.productsIndexPage*/ -}}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{( pgettext "All" "product" )}}</th>
|
|
<th>{{( pgettext "Name" "title" )}}</th>
|
|
<th>{{( pgettext "Price" "title" )}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ with .Products }}
|
|
{{- range $product := . }}
|
|
<tr>
|
|
<td></td>
|
|
<td><a href="{{ companyURI "/products/"}}{{ .Slug }}">{{ .Name }}</a></td>
|
|
<td class="numeric">{{ .Price | formatPrice }}</td>
|
|
</tr>
|
|
{{- end }}
|
|
{{ else }}
|
|
<tr>
|
|
<td colspan="4">{{( gettext "No products added yet." )}}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{- end }}
|