%= render 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:shipping_methods) %> <% end %> <% content_for :page_actions do %> <% if can?(:create, Spree::ShippingMethod) %>
<%= Spree.t(:name) %> | <%= Spree.t(:zone) %> | <%= Spree.t(:calculator) %> | <%= Spree.t(:display) %> | |
---|---|---|---|---|
<%= shipping_method.admin_name + ' / ' if shipping_method.admin_name.present? %><%= shipping_method.name %> | <%= shipping_method.zones.collect(&:name).join(", ") if shipping_method.zones %> | <%= shipping_method.calculator.description %> | <%= shipping_method.display_on.blank? ? Spree.t(:both) : Spree.t(shipping_method.display_on) %> | <% if can?(:update, shipping_method) %> <%= link_to_edit shipping_method, :no_text => true %> <% end %> <% if can?(:destroy, shipping_method) %> <%= link_to_delete shipping_method, :no_text => true %> <% end %> |