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.
 
 
 
 
 

26 rivejä
481 B

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