custom/plugins/ChiliCustom/src/Resources/views/storefront/page/checkout/checkout-item.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/checkout-item.html.twig' %}
  2.                                                 {% block page_checkout_item_info_label %}
  3.                                                     {% if lineItem.type == 'product' %}
  4.                                                         <a href="{{ seoUrl('frontend.detail.page', {'productId': lineItem.referencedId}) }}"
  5.                                                            class="cart-item-label"
  6.                                                            title="{{ lineItem.label }}"
  7.                                                                 {% if controllerAction is same as('confirmPage') %}
  8.                                                                     data-toggle="modal"
  9.                                                                     data-modal-class="quickview-modal"
  10.                                                                     data-url="{{ path('widgets.quickview.minimal',{ 'productId': lineItem.referencedId }) }}"
  11.                                                                 {% endif %}
  12.                                                         >
  13.                                                             {{ lineItem.label|u.truncate(60, '...', false) }}
  14.                                                         </a>
  15.                                                     {% else %}
  16.                                                         <div class="cart-item-label">
  17.                                                             {{ lineItem.label|u.truncate(60, '...', false) }}
  18.                                                         </div>
  19.                                                     {% endif %}
  20.                                                 {% endblock %}
  21.                                                 {% block page_checkout_item_info_ordernumber %}
  22.                                                     {% if lineItem.payload.productNumber %}
  23.                                                         <div class="cart-item-ordernumber">
  24.                                                             {{ "checkout.cartItemInfoId"|trans|sw_sanitize }} {{ lineItem.payload.productNumber }}
  25.                                                         </div>
  26.                                                     {% endif %}
  27.                                                     {% if lineItem.label == 'SchülerInnen- und StudentInnenabo'%}
  28.                                                         <div class="abo-class"></div>
  29.                                                     {% endif %}
  30.                                                 {% endblock %}
  31.                                                 {% block page_checkout_item_info_variant_characteristics %}
  32.                                                 {% endblock %}
  33.                                                 {% block page_checkout_item_info_features %}
  34.                                                 {% endblock %}