Sha256: ba4304dd199135e82adbe35017c71f58545e021579c151eb434bdb23d24bbff6

Contents?: true

Size: 632 Bytes

Versions: 7

Compression:

Stored size: 632 Bytes

Contents

<% variant = line_item.variant -%>
<tr class="<%= cycle('', 'alt') %>">
  <td>
    <%= small_image(line_item.variant.product) %>
  </td>
  <td>              
    <h4><%= link_to variant.product.name,  product_path(variant.product) %></h4>
    <%= variant_options variant %>
    <%= truncate(variant.product.description, :length => 100, :omission => "...") %>
  </td>
  <td>
    <%= product_price(line_item) %>
  </td>
  <td>
    <%= f.text_field :quantity, :size => 3 %>
  </td>
  <td>
    <%= format_price(product_price(line_item, :format_as_currency => false) * line_item.quantity) unless line_item.quantity.nil? %>
  </td>
</tr>

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
kdmny-spree-0.0.1 app/views/orders/_line_item.html.erb
spree-0.8.4 app/views/orders/_line_item.html.erb
spree-0.8.5 app/views/orders/_line_item.html.erb
spree-0.8.0 app/views/orders/_line_item.html.erb
spree-0.8.1 app/views/orders/_line_item.html.erb
spree-0.8.2 app/views/orders/_line_item.html.erb
spree-0.8.3 app/views/orders/_line_item.html.erb