22 lines
415 B
Plaintext
22 lines
415 B
Plaintext
|
<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 %>
|