Sha256: 79c932dce698ffa72591d9c09fd929af5afce10a664f94de3b87ef80ac5cbc12

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

<form data-action="cart-shipping#payment"
      data-cart-shipping-target="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

8 entries across 8 versions & 1 rubygems

Version Path
editorial-autogestiva-jekyll-theme-0.5.0rc8 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc7 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc6 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc5 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc4 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc3 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc2 assets/templates/shipping_methods.html
editorial-autogestiva-jekyll-theme-0.5.0rc1 assets/templates/shipping_methods.html