game-data/views/hardware/view.erb
Gregory Ballantine 175ce24b27
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Started work to redo the UI for database changes
2023-12-21 01:29:59 -05:00

21 lines
448 B
Plaintext

<div class="grid-x grid-margin-x">
<div class="cell small-12">
<h1><%= hardware.name %></h1>
</div>
</div>
<div class="grix-x grix-margin-x">
<div class="cell small-12">
<%= hardware.type %>
</div>
<div class="cell small-12">
<h4>Tests involving this hardware:</h4>
<ul>
<% hardware.tests().each do |t| %>
<li><a href="/test/<%= t.id %>"><% t.date_tag %></a></li>
<% end %>
</ul>
</div>
</div>