index.html.erb 560 B

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