index.html.erb 624 B

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