Sha256: cdcb83628bbf5144173127d773c82d12a8230706a35a7fdbc062c9cf4c457950

Contents?: true

Size: 1.35 KB

Versions: 10

Compression:

Stored size: 1.35 KB

Contents

<form
  data-action="cart-payment-methods#pay"
  data-target="cart-payment-methods.form">
  {% for payment_method in payment_methods %}
    <div class="custom-control custom-radio mt-3">
      <input
        class="custom-control-input"
        type="radio"
        data-target="cart-payment-methods.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-target="cart-payment-methods.submit"
        disabled
        value="{{ site.payment.next_step }} {{ cart.data.attributes.total | floor }} {{ cart.data.attributes.currency }}"/>
    </div>
  </div>
</form>

Version data entries

10 entries across 10 versions & 1 rubygems

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