Listing line_items

<% for line_item in @line_items %> <% end %>
Product Order Quantity Total price
<%=h line_item.product_id %> <%=h line_item.order_id %> <%=h line_item.quantity %> <%=h line_item.total_price %> <%= link_to 'Show', line_item %> <%= link_to 'Edit', edit_line_item_path(line_item) %> <%= link_to 'Destroy', line_item, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New line_item', new_line_item_path %>