Sha256: 9b05a1b74ea6fe760dabb7db629193c98da588f0f1ff13f2dcadf7587c355fa5
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 KB
Contents
<div class="checkout-confirm-delivery-informations text-left mt-3 <%= class_name %>"> <div class="d-lg-none checkout-confirm-delivery-informations-header"> <%= Harpiya.t(:delivery_information) %> </div> <dl> <% if order.has_step?("address") %> <div data-hook="order-ship-address"> <dt class="text-uppercase"> <%= Harpiya.t(:shipping_address) %> <%= checkout_edit_link %> </dt> <%= render 'harpiya/shared/address', address: order.ship_address %> </div> <div data-hook="order-bill-address"> <dt class="text-uppercase"> <%= Harpiya.t(:billing_address) %> <%= checkout_edit_link %> </dt> <%= render 'harpiya/shared/address', address: order.bill_address %> </div> <% end %> <% if order.has_step?("delivery") %> <div data-hook="order-shipment"> <dt class="text-uppercase"> <%= Harpiya.t(:shipping) %> <%= checkout_edit_link('delivery') %> </dt> <% @order.shipments.valid.each do |shipment| %> <dd><%= shipment.shipping_method&.name %> </dd> <% end %> <%= render 'harpiya/shared/shipment_tracking', order: order if order.shipped? %> </div> <% end %> <% if order.has_step?("payment") %> <div data-hook="order-payment"> <dt class="text-uppercase"> <%= Harpiya.t(:payment) %> <%= checkout_edit_link('payment') %> </dt> <dd> <%= render collection: @order.payments.valid, partial: 'harpiya/shared/payment' %> </dd> <dd> <% if @order.using_store_credit? %> <%= button_tag Harpiya.t('store_credit.remove'), name: 'remove_store_credit', class: 'continue btn' %> <% end %> </dd> </div> <% end %> </dl> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
harpiya_frontend-4.3.0.alpha | app/views/harpiya/checkout/_delivery_informations.html.erb |