<% if item.variant.images.length == 0 %>
<%= link_to small_image(item.variant.product), item.variant.product %>
<% else %>
<%= link_to image_tag(item.variant.images.first.attachment.url(:small)), item.variant.product %>
<% end %>
|
<%= item.variant.product.name %>
<%= truncate(item.variant.product.description, :length => 100, :omission => "...") %>
<%= "(" + item.variant.options_text + ")" unless item.variant.option_values.empty? %>
|
<%= number_to_currency item.price %> |
<%= item.quantity %> |
<%= number_to_currency (item.price * item.quantity) %> |
<% end %>