templates/components/shopping_cart_order_button.html.twig line 1

Open in your IDE?
  1. <div class="offcanvas-footer p-0"
  2.     {{ attributes }}
  3.     data-action="shopping-cart:refresh@window->live#$render"
  4. >
  5.     {% if (this.getNumberOfItems > 0) %}
  6.         {% if this.hasTiProduct %}
  7.             <a
  8.                 href="{{ path('checkout_ehba') }}"
  9.                 class="w-100 button accent"
  10.             >
  11.                 <i class="fas fa-shopping-cart me-2"></i>
  12.                 <span>Bestellung aufgeben</span>
  13.             </a>
  14.         {% else %}
  15.             <a
  16.                 href="{{ path('checkout_overview') }}"
  17.                 class="w-100 button accent"
  18.             >
  19.                 <i class="fas fa-shopping-cart me-2"></i>
  20.                 <span>Bestellung aufgeben</span>
  21.             </a>
  22.         {% endif %}
  23.     {% endif %}
  24. </div>