%# NOTE: The code below is an exact duplication of `spree_core/views/checkout/_delivery.html.erb“ We overwrote the original so we retain access to it by cloning it here. Feel free to update the code below according to the original if needed! %>
<% @order.rate_hash.each do |shipping_method| %> <% next if shipping_method[:id] == @order.digital_shipping_method[:id] %> <%= radio_button(:order, :shipping_method_id, shipping_method[:id]) %> <%= shipping_method[:name] %> <%= number_to_currency shipping_method[:cost] %> <% end %>
<%= form.label :special_instructions, t("shipping_instructions") %> <%= form.text_area :special_instructions, :cols => 40, :rows => 7 %>