Sha256: d21f37ebf8f30c367237f970b34256083605f0e734dfae1058a1183c6fe817f3
Contents?: true
Size: 1.32 KB
Versions: 16
Compression:
Stored size: 1.32 KB
Contents
<% order = order_form.object %> <%= render 'spree/shared/error_messages', target: order %> <table id="cart-detail" data-hook> <thead> <tr data-hook="cart_items_headers"> <th class="cart-item-description-header" colspan="2"><%= Spree.t(:item) %></th> <th class="cart-item-price-header"><%= Spree.t(:price) %></th> <th class="cart-item-quantity-header"><%= Spree.t(:qty) %></th> <th class="cart-item-total-header"><%= Spree.t(:total) %></th> <th class="cart-item-delete-header"></th> </tr> </thead> <tbody id="line_items" data-hook> <%= render partial: 'spree/orders/line_item', collection: order.line_items, locals: { order_form: order_form } %> </tbody> <% if order.adjustments.nonzero.exists? || order.line_item_adjustments.nonzero.exists? || order.shipment_adjustments.nonzero.exists? || order.shipments.any? %> <tr class="cart-subtotal"> <td colspan="4" align='right'><h5><%= Spree.t(:cart_subtotal, count: order.line_items.sum(:quantity)) %></h5></th> <td colspan><h5><%= order.display_item_total %></h5></td> <td></td> </tr> <%= render "spree/orders/adjustments" %> <% end %> <tr class="cart-total"> <td colspan="4" align='right'><h5><%= Spree.t(:total) %></h5></th> <td colspan><h5><%= order.display_total %></h5></td> <td></td> </tr> </table>
Version data entries
16 entries across 16 versions & 1 rubygems