{% sw_extends '@Storefront/storefront/page/checkout/checkout-item.html.twig' %}
{% block page_checkout_item_info_label %}
{% if lineItem.type == 'product' %}
<a href="{{ seoUrl('frontend.detail.page', {'productId': lineItem.referencedId}) }}"
class="cart-item-label"
title="{{ lineItem.label }}"
{% if controllerAction is same as('confirmPage') %}
data-toggle="modal"
data-modal-class="quickview-modal"
data-url="{{ path('widgets.quickview.minimal',{ 'productId': lineItem.referencedId }) }}"
{% endif %}
>
{{ lineItem.label|u.truncate(60, '...', false) }}
</a>
{% else %}
<div class="cart-item-label">
{{ lineItem.label|u.truncate(60, '...', false) }}
</div>
{% endif %}
{% endblock %}
{% block page_checkout_item_info_ordernumber %}
{% if lineItem.payload.productNumber %}
<div class="cart-item-ordernumber">
{{ "checkout.cartItemInfoId"|trans|sw_sanitize }} {{ lineItem.payload.productNumber }}
</div>
{% endif %}
{% if lineItem.label == 'SchülerInnen- und StudentInnenabo'%}
<div class="abo-class"></div>
{% endif %}
{% endblock %}
{% block page_checkout_item_info_variant_characteristics %}
{% endblock %}
{% block page_checkout_item_info_features %}
{% endblock %}