DistroPropaganda/code/rails31/depot_r/app/views/carts/index.html.erb

22 lines
387 B
Text
Raw Normal View History

2018-11-24 13:20:20 +01:00
<h1>Listing carts</h1>
<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
<% @carts.each do |cart| %>
<tr>
<td><%= link_to 'Show', cart %></td>
<td><%= link_to 'Edit', edit_cart_path(cart) %></td>
<td><%= link_to 'Destroy', cart, confirm: 'Are you sure?', method: :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Cart', new_cart_path %>