<%= stylesheets %>

Shopping Cart

<% form_tag do-%> <% for @item in @cart.cart_items %> <% end %>
Item Price Qty Total
<%=image_tag ('products/' + @item.product.filename, :size => '85x57')%> <%=link_to @item.product.name, :controller => 'store', :action => 'show', :id => @item.product-%> <%= variation_options @item.variation if @item.variation %>
<%=truncate(@item.product.description, length = 100, truncate_string = "...")-%>
$ <%= sprintf("%0.2f", @item.price) %> <%= text_field "item[]", :quantity, :size => 1 -%> $ <%= sprintf("%0.2f", @item.price * @item.quantity)-%>

Subtotal $ <%= sprintf("%0.2f", @cart.total) %>

<%= submit_tag 'Update' %> <%= link_to "Checkout", :controller => 'checkout' %>
<% end %> <%if previous_location %>

Continue Shopping

<%end%> <% unless @cart.cart_items.empty? %> <% end %>