<% content_for :page_actions do %> <%= button_link_to Spree.t(:back_to_shipments_list), spree.admin_shipments_path, icon: 'arrow-left' %> <% end %> <% if spree_current_user.admin? && @shipment.supplier.present? %>
<%= Spree.t(:supplier_information) %>
<%= Spree::Supplier.human_attribute_name(:name) %>: <%= @shipment.supplier.name %>
<%= Spree::Supplier.human_attribute_name(:email) %>: <%= @shipment.supplier.email %>
<%= Spree::Supplier.human_attribute_name(:url) %>: <%= link_to @shipment.supplier.url, @shipment.supplier.url if @shipment.supplier.url.present? %>
<%= Spree.t('contact_information') %>:
<%= render partial: 'spree/shared/address', locals: { address: @shipment.supplier.address } %>
<% end %>
<%= render partial: "spree/admin/orders/shipment", locals: { order: @shipment.order, shipment: @shipment } %>