{% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
{% block page_checkout_cart_table_items %}
{% for lineItem in page.cart.lineItems %}
{% if not lineItem.payload.xconfig_accessory %}
{% if lineItem.payload.xconfig == "1" %}
{% sw_include '@Storefront/storefront/page/checkout/checkout-item.html.twig' %}
{% set variantId = lineItem.payload.xVariantId %}
{% set accessory_count = 0 %}
{% for accessoryItem in page.cart.lineItems %}
{% if accessoryItem.payload.xconfig_accessory %}
{% if accessoryItem.payload.variant_relation == variantId %}
{% set accessory_count = accessory_count + 1 %}
{% if accessory_count == 1 %}
<div class="accessoryCardItem-headline">Ausgewähltes Zubehör für {{ lineItem.payload.productNumber}}</div>
{% endif %}
{% sw_include '@XioniXconfig//storefront/page/checkout/xcheckout-accessory-item.html.twig' with { lineItem: accessoryItem } %}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% block page_checkout_cart_table_item %}
{% block page_checkout_item %}
{% sw_include '@Storefront/storefront/page/checkout/checkout-item.html.twig' %}
{% endblock %}
{% endblock %}
{% endif %}
{% endif %}
{% endfor %}
{% endblock %}