Sha256: a05c48b78f74894c24cd732cb5b23f9f8bf46f7134d78f2a0615e8ccfc331782

Contents?: true

Size: 1.59 KB

Versions: 52

Compression:

Stored size: 1.59 KB

Contents

<% variant = line_item.variant -%>
<%= order_form.fields_for :line_items, line_item do |item_form| -%>
  <tr class="<%= cycle('', 'alt') %> line-item">
    <td class="cart-item-image" data-hook="cart_item_image">
      <% if variant.images.length == 0 %>
        <%= link_to small_image(variant.product), variant.product %>
      <% else %>
        <%= link_to image_tag(variant.images.first.attachment.url(:small)), variant.product %>
      <% end %>
    </td>
    <td class="cart-item-description" data-hook="cart_item_description">
      <h4><%= link_to line_item.name, product_path(variant.product) %></h4>
      <%= variant.options_text %>
      <% if line_item.insufficient_stock? %>
        <span class="out-of-stock">
          <%= Spree.t(:out_of_stock) %>&nbsp;&nbsp;<br />
        </span>
      <% end %>
      <span class="line-item-description" data-hook="line_item_description">
        <%= line_item_description_text(line_item.description) %>
      </span>
    </td>
    <td class="cart-item-price" data-hook="cart_item_price">
      <%= line_item.single_money.to_html %>
    </td>
    <td class="cart-item-quantity" data-hook="cart_item_quantity">
      <%= item_form.number_field :quantity, :min => 0, :class => "line_item_quantity", :size => 5 %>
    </td>
    <td class="cart-item-total" data-hook="cart_item_total">
      <%= line_item.display_amount.to_html unless line_item.quantity.nil? %>
    </td>
    <td class="cart-item-delete" data-hook="cart_item_delete">
      <%= link_to image_tag('icons/delete.png'), '#', :class => 'delete', :id => "delete_#{dom_id(line_item)}" %>
    </td>
  </tr>
<% end -%>

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
spree_frontend-2.4.10 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.13 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.2.14 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.9 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.12 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.2.13 app/views/spree/orders/_line_item.html.erb
solidus_frontend-1.0.0.pre2 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.8 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.11 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.2.12 app/views/spree/orders/_line_item.html.erb
solidus_frontend-1.0.0.pre app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.7 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.10 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.6 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.9 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.2.11 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.2.10 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.3.8 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.5 app/views/spree/orders/_line_item.html.erb
spree_frontend-2.4.4 app/views/spree/orders/_line_item.html.erb