Sha256: 236bee92e9c935c5115d0058164deeff388d5a71c5f5ff1c48e28b03b249632a

Contents?: true

Size: 1.23 KB

Versions: 7

Compression:

Stored size: 1.23 KB

Contents

<form data-action="cart-shipping#payment"
      data-target="cart-shipping.rates">
  <input type="hidden" name="id" value="{{ shipping_method.id }}" />

  <div class="row no-gutters justify-content-center">
    {% for shipping_rate in shipping_rates %}
      <div class="col-12">
        <div class="custom-control custom-radio mt-3">
          <input
            class="custom-control-input"
            type="radio"
            {% if shipping_rate.attributes.selected %}
              checked
            {% endif %}
            name="selected_shipping_rate_id"
            id="order_shipments_attributes_selected_shipping_rate_id_{{ shipping_rate.id }}"
            value="{{ shipping_rate.id }}"
            />

          <label
            class="font-weight-bold custom-control-label"
            for="order_shipments_attributes_selected_shipping_rate_id_{{ shipping_rate.id }}">
            <span class="lead">{{ shipping_rate.attributes.name }}</span>
            <br/>
            {{ shipping_rate.attributes.display_cost }}
          </label>
        </div>
      </div>
    {% endfor %}

    <div class="col-12 mt-3">
      <input type="submit" class="btn btn-block btn-success" value="{{ site.shipment.next_step }}" />
    </div>
  </div>
</form>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
editorial-autogestiva-jekyll-theme-0.5.0rc0 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.4.2 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.4.1 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.4.0 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.3.5 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.3.1 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.3.0 assets/templates/shipping_methods.html