Files
game-data/views/index/index.erb
Gregory Ballantine 886f566ae2
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/tag/woodpecker Pipeline failed
Started work to move the CSS framework to Bootstrap 5
2025-07-25 17:44:25 -04:00

33 lines
829 B
Plaintext

<div class="row">
<% if tests.length > 0 %>
<div class="twelve columns">
<h2>Latest benchmark results:</h2>
</div>
<div class="twelve columns">
<table>
<thead>
<tr>
<th>Test name</th>
<th># Benchmarks</th>
<th>Last Updated</th>
</tr>
</thead>
<tbody>
<% tests.each do |t| %>
<tr>
<td><a href="/test/<%= t.id %>"><%= t.name %></a></td>
<td><%= t.benchmark.length %></td>
<td><%= t.updated_at %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
<% else %>
<div class="twelve columns">
<p>I'm sorry, there don't appear to be any benchmark results logged yet. Check again later!</p>
</div>
<% end %>
</div>