You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/app/views/no_uses/index.html.erb

22 lines
415 B

<h1>Listing no_uses</h1>
<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
<% @no_uses.each do |no_use| %>
<tr>
<td><%= link_to 'Show', no_use %></td>
<td><%= link_to 'Edit', edit_no_use_path(no_use) %></td>
<td><%= link_to 'Destroy', no_use, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New No use', new_no_use_path %>