Sha256: c3b46736b6261640952b5e48f3b470941d02cf325b709f4e201a4d4bb27cf1ee

Contents?: true

Size: 974 Bytes

Versions: 2

Compression:

Stored size: 974 Bytes

Contents

<fieldset id='shipping_method' data-hook>
  <legend align="center"><%= t(:shipping_method) %></legend>
  <div class="inner" data-hook="shipping_method_inner">
    <div id="methods">
      <p class="field radios">
        <% @order.rate_hash.each do |shipping_method| %>
          <label>
            <%= radio_button(:order, :shipping_method_id, shipping_method[:id]) %>
            <%= shipping_method.name %> <%= shipping_method.display_price.to_html %>
          </label>
        <% end %>
      </p>
    </div>
    <% if Spree::Config[:shipping_instructions] && @order.rate_hash.present? %>
      <p id="minstrs" data-hook>
        <%= form.label :special_instructions, t(:shipping_instructions) %><br />
        <%= form.text_area :special_instructions, :cols => 40, :rows => 7 %>
      </p>
    <% end %>
  </div>
</fieldset>

<br />

<div class="form-buttons" data-hook="buttons">
  <%= submit_tag t(:save_and_continue), :class => 'continue button primary' %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-1.3.4 app/views/spree/checkout/_delivery.html.erb
spree_core-1.3.3 app/views/spree/checkout/_delivery.html.erb