index.html.erb 397 B

123456789101112131415161718192021
  1. <h1>Listing carts</h1>
  2. <table>
  3. <tr>
  4. <th></th>
  5. <th></th>
  6. <th></th>
  7. </tr>
  8. <% @carts.each do |cart| %>
  9. <tr>
  10. <td><%= link_to 'Show', cart %></td>
  11. <td><%= link_to 'Edit', edit_cart_path(cart) %></td>
  12. <td><%= link_to 'Destroy', cart, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  13. </tr>
  14. <% end %>
  15. </table>
  16. <br />
  17. <%= link_to 'New Cart', new_cart_path %>