themes/webapicTheme/templates/bundles/SyliusShopBundle/Checkout/SelectPayment/_payment.html.twig line 1

Open in your IDE?
  1. <div class="modetransport ui fluid stackable items">
  2.     {{ form_errors(form.method) }}
  3.     {# {% for key, choice_form in form.method %}
  4.         {% include '@SyliusShop/Checkout/SelectPayment/_choice.html.twig' with {'form': choice_form, 'method': form.method.vars.choices[key].data} %}
  5.     {% else %}
  6.         {% include '@SyliusShop/Checkout/SelectPayment/_unavailable.html.twig' %}
  7.     {% endfor %} #}
  8.     
  9.     {% for key, choice_form in form.method %}
  10.         {% if app_is_available_payment(form.method.vars.choices[key].data.code) %}
  11.             {% include '@SyliusShop/Checkout/SelectPayment/_choice.html.twig' with {'form': choice_form, 'method': form.method.vars.choices[key].data} %}
  12.         {% endif %}
  13.     {% else %}
  14.         {% include '@SyliusShop/Checkout/SelectPayment/_unavailable.html.twig' %}
  15.     {% endfor %}
  16. </div>