Files
game-data/views/benchmark/view.erb
Gregory Ballantine 541b5236f0
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Finished transition to Bootstrap 5
2025-07-26 00:55:52 -04:00

50 lines
1.1 KiB
Plaintext

<div class="row">
<div class="col-12">
<h1><%= benchmark.name %></h1>
</div>
<div class="col-12">
<p><a href="/benchmark/<%= benchmark.id %>/edit">Edit</a></p>
</div>
<div class="col-12">
Benchmark scoring type: <%= benchmark.scoring %>
</div>
<div class="col-12">
Description:
<p><%= benchmark.description %></p>
</div>
</div>
<hr>
<div class="row">
<div class="col-12">
<h3 class="mb-3">Tests using this benchmark:</h3>
<% if benchmark.tests.length > 0 %>
<table class="table table-hover table-responsive">
<thead class="table-light">
<tr>
<th>Test title</th>
<th>Benchmarks</th>
<th>Last updated</th>
</tr>
</thead>
<tbody>
<% benchmark.tests.each do |t| %>
<tr>
<td><a href="/test/<%= t.id %>"><%= t.name %></a></td>
<td><%= t.benchmarks.length %></td>
<td><%= t.updated_at %></td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<p>There are no tests associated with this benchmark.</p>
<% end %>
</div>
</div>