Files
game-data/views/index/index.erb
Gregory Ballantine aec77628f7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Small updates
2025-07-23 23:25:00 -04:00

32 lines
810 B
Plaintext

<div class="grid-x grid-margin-x">
<% if tests.length > 0 %>
<div class="cell small-12">
<h2>Latest benchmark results:</h2>
</div>
<div class="cell small-12">
<table>
<thead>
<tr>
<th>Test name</th>
<th># Benchmarks</th>
<th>Last Updated</th>
</tr>
</thead>
<tbody>
<% tests.each do |t| %>
<tr>
<td><%= t.name %></td>
<td><%= t.benchmark.length %></td>
<td><%= t.updated_at %></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>