Started work to re-work database; add new models for benchmarks and components

This commit is contained in:
2023-09-22 23:03:24 -06:00
parent e176398f41
commit 0dd7098681
18 changed files with 343 additions and 51 deletions

View File

@ -32,9 +32,9 @@
<tbody>
{% for r in test.results %}
<tr>
<td>{{ r.component }}</td>
<td>{{ r.benchmark }}</td>
<td>{{ r.type | capitalize }}</td>
<td>{{ test.component().name }}</td>
<td>{{ test.benchmark().name }}</td>
<td>{{ test.scoring | capitalize }}</td>
<td>{{ r.average }}</td>
<td>{{ r.minimum ? r.minimum : 'N/a' }}</td>
<td>{{ r.maximum ? r.maximum : 'N/a' }}</td>