index.html.erb 644 B

1234567891011121314151617181920212223242526272829
  1. <h1>Listing line_items</h1>
  2. <table>
  3. <thead>
  4. <tr>
  5. <th>Product</th>
  6. <th>Cart</th>
  7. <th></th>
  8. <th></th>
  9. <th></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <% @line_items.each do |line_item| %>
  14. <tr>
  15. <td><%= line_item.product %></td>
  16. <td><%= line_item.cart %></td>
  17. <td><%= link_to 'Show', line_item %></td>
  18. <td><%= link_to 'Edit', edit_line_item_path(line_item) %></td>
  19. <td><%= link_to 'Destroy', line_item, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  20. </tr>
  21. <% end %>
  22. </tbody>
  23. </table>
  24. <br>
  25. <%= link_to 'New Line item', new_line_item_path %>