Added functionality to add new hardware and benchmarks to tie to results (this may be moved to an admin panel later)
This commit is contained in:
42
views/hardware/index.erb
Normal file
42
views/hardware/index.erb
Normal file
@ -0,0 +1,42 @@
|
||||
<div class="grid-x grid-margin-x">
|
||||
<div class="cell small-12">
|
||||
<h1>List of hardware</h1>
|
||||
</div>
|
||||
|
||||
<div class="cell small-12">
|
||||
<p>
|
||||
<a href="/hardware/add">Add new hardware</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid-x grid-margin-x">
|
||||
<% if hardware.length > 0 %>
|
||||
<div class="cell small-12">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Hardware name</th>
|
||||
<th>Type</th>
|
||||
<th>Date added</th>
|
||||
<th>Date modified</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% hardware.each do |h| %>
|
||||
<tr>
|
||||
<td><%= h.name %></td>
|
||||
<td><%= h.type %></td>
|
||||
<td><%= h.created_at %></td>
|
||||
<td><%= h.updated_at %></td>
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<% else %>
|
||||
<div class="cell small-12">
|
||||
<p>I'm sorry, there doesn't appear to be any hardware added yet. Check again later!</p>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
Reference in New Issue
Block a user