28 lines
630 B
Cheetah
28 lines
630 B
Cheetah
|
{{ template "header" . }}
|
||
|
|
||
|
<div class="row">
|
||
|
<h2>Benchmark</h2>
|
||
|
<a href="/benchmark/create">Add new benchmark</a>
|
||
|
|
||
|
<table class="twelve columns">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>Name</td>
|
||
|
<td>Created at</td>
|
||
|
<td>Last updated</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{ range $h := .benchmark }}
|
||
|
<tr>
|
||
|
<td><a href="/benchmark/{{ $h.ID }}">{{ $h.Name }}</a></td>
|
||
|
<td>{{ $h.CreatedAt.Format "01/02/2006 15:04am" }}</td>
|
||
|
<td>{{ $h.UpdatedAt.Format "01/02/2006 15:04am" }}</td>
|
||
|
</tr>
|
||
|
{{ end }}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
{{ template "footer" . }}
|