2023-07-03 23:02:25 -04:00
|
|
|
<div class="grid-x grid-margin-x">
|
2023-09-21 22:41:25 -04:00
|
|
|
<% if results.length > 0 %>
|
2024-02-09 08:40:34 -05:00
|
|
|
<div class="cell small-12">
|
2023-07-03 23:02:25 -04:00
|
|
|
<h2>Latest benchmark results:</h2>
|
|
|
|
</div>
|
|
|
|
<div class="cell small-12">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-09-03 09:26:09 -04:00
|
|
|
<th>Hardware tested</th>
|
|
|
|
<th>Benchmark used</th>
|
2023-07-03 23:02:25 -04:00
|
|
|
<th>Score</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<% results.each do |r| %>
|
|
|
|
<tr>
|
2024-02-09 08:40:34 -05:00
|
|
|
<td><%= r.hardware.name %></td>
|
|
|
|
<td><%= r.benchmark.name %></td>
|
2023-07-03 23:02:25 -04:00
|
|
|
<td><%= r.formatted_score() %></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<div class="cell small-12">
|
|
|
|
<p>I'm sorry, there don't appear to be any benchmark results logged yet. Check again later!</p>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|