Added abilities to view and edit benchmark info

This commit is contained in:
2025-05-30 01:45:49 -04:00
parent cf9235cb18
commit ed085e4b40
5 changed files with 94 additions and 7 deletions

View File

@ -18,17 +18,15 @@
<tr>
<th>Benchmark name</th>
<th>Scoring type</th>
<th>Date added</th>
<th>Date modified</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<% benchmarks.each do |b| %>
<tr>
<td><%= b.name %></td>
<td><a href="/benchmark/<%= b.id %>"><%= b.name %></a</td>
<td><%= b.scoring %></td>
<td><%= date_format(b.created_at) %></td>
<td><%= date_format(b.updated_at) %></td>
<td><%= b.description %></td>
</tr>
<% end %>
</tbody>