game-data/views/index/index.erb

32 lines
829 B
Plaintext
Raw Permalink Normal View History

<div class="grid-x grid-margin-x">
<% if results.length > 0 %>
<div class="cell small-12">
<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>
<th>Score</th>
</tr>
</thead>
<tbody>
<% results.each do |r| %>
<tr>
<td><%= r.hardware.name %></td>
<td><%= r.benchmark.name %></td>
<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>