Updated test views and routes for the new test attributes

This commit is contained in:
2024-04-06 12:08:23 -04:00
parent 0c1df2e7e6
commit 33c9bf5cb5
5 changed files with 27 additions and 9 deletions

View File

@ -9,7 +9,7 @@
<table class="u-full-width">
<thead>
<tr>
<th>Test Date</th>
<th>Test title</th>
<th>Benchmark</th>
<th>Hardware</th>
<th># of Results</th>
@ -19,7 +19,7 @@
<tbody>
{% for t in tests %}
<tr>
<td><a href="{{ url_for('test.view', { test_id: t.id }) }}">{{ t.date_tag }}</a></td>
<td><a href="{{ url_for('test.view', { test_id: t.id }) }}">{{ t.title }}</a></td>
<td>{{ t.benchmark.name }}</td>
<td>{{ t.component.name }}</td>
<td>{{ t.results | length }}</td>