Files
blt/templates/hardware/list.tmpl
T
Gregory Ballantine 73d0bec16a Updated some styles
2026-07-24 12:29:44 -04:00

28 lines
638 B
Cheetah

{{ template "header" . }}
<div class="row">
<h2>List of hardware</h2>
<a href="/hardware/create">Add new hardware</a>
<table class="twelve columns card-2">
<thead>
<tr>
<td>Name</td>
<td>Created at</td>
<td>Last updated</td>
</tr>
</thead>
<tbody>
{{ range $h := .hardware }}
<tr>
<td><a href="/hardware/{{ $h.ID }}">{{ $h.Name }}</a></td>
<td>{{ $h.CreatedAt.Format "01/02/2006 3:04pm" }}</td>
<td>{{ $h.UpdatedAt.Format "01/02/2006 3:04pm" }}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
{{ template "footer" . }}