blt/templates/test/view.tmpl

20 lines
297 B
Cheetah
Raw Normal View History

2023-12-02 22:16:16 -05:00
{{ template "header" . }}
<div class="row">
2024-05-29 08:45:53 -04:00
<h2>{{ .test.Name }}</h2>
2023-12-02 22:16:16 -05:00
<p>{{ .test.Description }}</p>
<hr>
2024-05-29 08:42:53 -04:00
<h4>Latest Benchmark Results:</h4>
<p>There are currently no benchmarks recorded in this test.</p>
<hr>
2023-12-02 22:16:16 -05:00
<p><a href="/test">Back</a></p>
</div>
{{ template "footer" . }}