blt/templates/hardware/view.tmpl

41 lines
910 B
Cheetah
Raw Normal View History

2023-12-02 22:37:46 -05:00
{{ template "header" . }}
<div class="row">
<h2>{{ .hardware.Name }}</h2>
<p>{{ .hardware.Type }}</p>
<hr>
2024-05-29 12:33:45 -04:00
<h4>Tests Using This Component:</h4>
{{ $length := len .hardware.Tests }} {{ if eq $length 0 }}
<p>There are currently no tests using this hardware component.</p>
{{ else }}
<table class="u-full-width card-1">
2024-05-29 12:33:45 -04:00
<thead>
<tr>
<th>Test</th>
<th># of Benchmarks</th>
<th>Last Updated</th>
</tr>
</thead>
<tbody>
{{ range $test := .hardware.Tests }}
<tr>
<td><a href="/test/{{ $test.ID }}">{{ $test.Name }}</a></td>
<td>{{ len $test.Benchmarks }}</td>
<td>{{ $test.CreatedAt.Format "01/02/2006 15:04am" }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}
2024-05-29 08:37:51 -04:00
<hr>
2023-12-02 22:37:46 -05:00
<p><a href="/hardware">Back</a></p>
</div>
{{ template "footer" . }}