Sha256: bfa9e689c1bcd920dc8e54bf78613608f05daa6cf28b22cb0f3e8187a5ea4d0c
Contents?: true
Size: 1.35 KB
Versions: 5
Compression:
Stored size: 1.35 KB
Contents
<div class="checkout-confirm-delivery-informations text-left mt-3 <%= class_name %>"> <div class="d-lg-none checkout-confirm-delivery-informations-header"> <%= Spree.t(:delivery_information) %> </div> <dl> <div> <dt class="text-uppercase"> <%= Spree.t(:shipping_address) %> <%= checkout_edit_link %> </dt> <dd><%= sanitize @order.ship_address.to_s, tags: %w[br] %></dd> </div> <div> <dt class="text-uppercase"> <%= Spree.t(:billing_address) %> <%= checkout_edit_link %> </dt> <dd><%= sanitize @order.bill_address.to_s, tags: %w[br] %></dd> </div> <div> <dt class="text-uppercase"> <%= Spree.t(:shipping) %> <%= checkout_edit_link('delivery') %> </dt> <% @order.shipments.pending.each do |shipment| %> <dd><%= shipment.shipping_method&.name %> </dd> <% end %> </div> <div> <dt class="text-uppercase"> <%= Spree.t(:payment) %> <%= checkout_edit_link('payment') %> </dt> <dd> <%= render collection: @order.payments.valid, partial: 'spree/shared/payment' %> </dd> <dd> <% if @order.using_store_credit? %> <%= button_tag Spree.t('store_credit.remove'), name: 'remove_store_credit', class: 'continue btn' %> <% end %> </dd> </div> </dl> </div>
Version data entries
5 entries across 5 versions & 1 rubygems