Files
blt/templates/hardware/list.tmpl
T
Gregory Ballantine b9a0cfb993
ci/woodpecker/push/woodpecker Pipeline was successful
Fixed more style issues
2026-07-24 14:46:16 -04:00

28 lines
631 B
Cheetah

{{ template "header" . }}
<div class="row">
<h2>List of hardware</h2>
<a href="/hardware/create">Add new hardware</a>
<table class="twelve columns">
<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" . }}