Sha256: 8890757eb62dbe70ae282cdc3b71f60d4a1e28d71cd56be68ec692f544b1e905
Contents?: true
Size: 866 Bytes
Versions: 49
Compression:
Stored size: 866 Bytes
Contents
<%= render partial: 'spree/admin/shared/order_tabs', locals: { current: 'Customer Details' } %> <% admin_breadcrumb(t('spree.customer_details')) %> <% content_for :page_actions do %> <li><%= link_to t('spree.back_to_orders_list'), admin_orders_path, class: 'btn btn-primary' %></li> <% end %> <main class="col-5"> <section> <%= content_tag :h4, t('spree.account') %> <%= t('spree.email') %>: <%= @order.email %><br> <%= t('spree.guest_checkout') %>: <%= @order.user.nil? ? t('spree.yes') : t('spree.no') %> </section> <section> <%= content_tag :h4, t('spree.billing_address') %> <%= render "spree/admin/shared/address", address: @order.bill_address %> </section> <section> <%= content_tag :h4, t('spree.shipping_address') %> <%= render "spree/admin/shared/address", address: @order.ship_address %> </section> </main>
Version data entries
49 entries across 49 versions & 1 rubygems