index.html.erb 475 B

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