<%= small_image(line_item.variant.product) %>
|
<%= link_to variant.product.name, product_path(variant.product) %>
<%= variant_options variant %>
<%= truncate(variant.product.description, length = 100, truncate_string = "...") %>
|
<%= product_price(variant) %>
|
<%= f.text_field :quantity, :size => 3 %>
|
<%= format_price(product_price(variant, :format_as_currency => false) * line_item.quantity) unless line_item.quantity.nil? %>
|