Your Cart

<% if @cart.empty? %>

Your Cart is empty.

<% end %> <% total = 0 %> <% @cart.each do | id, quantity | %> <% item = Item.find_by_id(id) %> <% total += quantity * item.price %> <% end %>
Item Price Qty Total
<%= link_to (image_tag item.image_url), item %>
<%= link_to item.title, item %> <%= number_to_currency(item.price) %> <%= quantity %>
<%= button_to "-", :action => :change, :id => item, :quantity => (quantity - 1) %> <%= button_to "+", :action => :change, :id => item, :quantity => (quantity + 1) %>
<%= number_to_currency(quantity * item.price, :unit => "L") %>
Total:
<%= number_to_currency(total, :unit => "L") %>

<%= link_to 'Proceed to Checkout', :action => :checkout %> | <%= link_to 'Continue Shopping', :controller => :items %>