Sha256: 41817ba60842d951d45306c9cab0e41b44d5f5160a1fb0287b9c6088da17d5ac

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

{% raw %}
<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>
{% endraw %}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
observatorio-jekyll-theme-0.1.7 assets/templates/shipping_methods.html
observatorio-jekyll-theme-0.1.6 assets/templates/shipping_methods.html
observatorio-jekyll-theme-0.1.5 assets/templates/shipping_methods.html
observatorio-jekyll-theme-0.1.4 assets/templates/shipping_methods.html
observatorio-jekyll-theme-0.1.3 assets/templates/shipping_methods.html
observatorio-jekyll-theme-0.1.2 assets/templates/shipping_methods.html