%= stylesheets %>
Item | Price | Qty | Total | |
---|---|---|---|---|
<%= small_image(@item.product) %> |
<%=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)-%> |
<%= link_to "Empty Cart", :action => 'empty' %>
<% end %>