Shopping Cart

<% unless @cart.line_items.any? %>

You don't have any items in your cart. <%= link_to "Go Add Some", products_path %> <% end %> <% for line_item in @cart.line_items %> <% end %>
Print Price
<%= line_item.product.name %> <%= number_to_currency line_item.price %> <%= link_to "Remove", remove_from_cart_path(line_item), :method => :post %>
Total: <%= number_to_currency @cart.total_price %>


<%= form_tag checkout_path, :style => "text-align: right" do |f| %> <%= link_to "Continue Shopping", root_path %> or <%= submit_tag "Checkout" %> <% end %>