vendor/store.shopware.com/agiqonoci/src/Resources/views/storefront/page/checkout/cart/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
  2. {% block page_checkout_cart_action_proceed %}
  3.     {% if page.AgiqonOci %}
  4.         {% if page.AgiqonOciSystem == 'oci' %}
  5.             {% sw_include '@Storefront/storefront/plugin/oci-form.html.twig' %}
  6.         {% elseif page.AgiqonOciSystem == 'cxml' %}
  7.             {% sw_include '@Storefront/storefront/plugin/oci-cxml.html.twig' %}
  8.         {% else %}
  9.             {% sw_include '@Storefront/storefront/plugin/oci-form.html.twig' %}
  10.         {% endif %}
  11.     {% else %}
  12.         {{ parent() }}
  13.     {% endif %}
  14. {% endblock %}