Sha256: dae01ba47973366cc08073b98abf390ffaa4ade8e3f24631d362f0ae5454764f

Contents?: true

Size: 1.35 KB

Versions: 8

Compression:

Stored size: 1.35 KB

Contents

<form
  data-action="cart-payment-methods#pay"
  data-cart-payment-methods-target="form">
  {% for payment_method in payment_methods %}
    <div class="custom-control custom-radio mt-3">
      <input
        class="custom-control-input"
        type="radio"
        data-cart-payment-methods-target="method"
        name="payment_method_id"
        id="payment_method_id_{{ payment_method.id }}"
        value="{{ payment_method.id }}"
        />

      <label
        class="font-weight-bold custom-control-label"
        for="payment_method_id_{{ payment_method.id }}">
        <h3>{{ payment_method.attributes.name }}</h3>

        <p class="lead">{{ payment_method.attributes.description }}</p>
      </label>
    </div>
  {% endfor %}

  <div class="border-top pt-3 d-flex justify-content-between flex-wrap">
    <div class="order-last order-md-first mt-3 mt-sm-0">
      <a href="{{ back.url }}"
          class="btn btn-transparent border border-black black text-uppercase">
        {{ site.payment.back }}
      </a>
    </div>

    <div class="order-first order-md-last">
      <input type="submit"
        class="btn btn-primary btn-lg text-uppercase"
        data-cart-payment-methods-target="submit"
        disabled
        value="{{ site.payment.next_step }} {{ cart.data.attributes.total | floor }} {{ cart.data.attributes.currency }}"/>
    </div>
  </div>
</form>

Version data entries

8 entries across 8 versions & 1 rubygems

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