Sha256: 087fe616fbf3615506919ae6ba8f7063cf5f323bfee973c7d1239a03473a6413
Contents?: true
Size: 883 Bytes
Versions: 16
Compression:
Stored size: 883 Bytes
Contents
<%= render :partial => 'spree/shared/error_messages', :locals => { :target => @order } %> <table id="cart-detail" data-hook> <thead> <tr data-hook="cart_items_headers"> <th class="cart-item-description-header" colspan="2"><%= t(:item) %></th> <th class="cart-item-price-header"><%= t(:price) %></th> <th class="cart-item-quantity-header"><%= t(:qty) %></th> <th class="cart-item-total-header"><%= t(:total) %></th> <th class="cart-item-delete-header"></th> </tr> </thead> <tbody id="line_items" data-hook> <%= order_form.fields_for :line_items do |item_form| %> <%= render :partial => 'line_item', :locals => { :variant => item_form.object.variant, :line_item => item_form.object, :item_form => item_form } %> <% end %> </tbody> <%= render "spree/orders/adjustments" unless @order.adjustments.eligible.blank? %> </table>
Version data entries
16 entries across 16 versions & 2 rubygems