{% block wishlist_box_product_collection_view %}
{% for wishlist in wishlists %}
<div id="{{ wishlist.id }}" class="pixupWishlistContentWishlistContainer" style="display:{% if selectedWishlist.id is not empty %}{{ selectedWishlist.id == wishlist.id ? 'flex' : 'none' }}{% else %}{{ loop.index == 1 ? 'flex' : 'none' }}{% endif %}">
{% for key, product in wishlist.products %}
<div class="pixupWishlistProductContainer" id="product_container{{ loop.index }}" data-product-id="{{ product.id }}" data-wishlist-id="{{ wishlist.id }}">
{% if not wishlist.isOwnWishlist and not wishlist.external and not wishlist.editable %}
{% set delete = false %}
{% else %}
{% set delete = true %}
{% endif %}
{% sw_include '@Storefront/wishlist/box/product-prev.html.twig' with {
product: product,
configuratorSettings:wishlist.configuratorSettings[key],
index: loop.index,
wishlistId: wishlist.id,
external: wishlist.external,
delete: delete,
move : delete
} only %}
</div>
{% endfor %}
{% if(wishlist.products is empty) %}
<div class="pixupWishlistProductContainer pixupWishlistNoProductContainer" id="product_container1" data-product-id="-1" data-wishlist-id="{{ wishlist.id }}" style="min-width:100%;width:100%">
<div class="textWrapper">
<div class="title"> {{ "pixup-wishlist.wishlist-page.errorCodes.noProducts.title"|trans }}</div>
<div class="desc"> {{ "pixup-wishlist.wishlist-page.errorCodes.noProducts.desc"|trans }}</div>
</div>
{% sw_icon 'px-bot' style {"namespace":"PixupWishlistSW6","pack":"pixup", "class":" pxBot", "noIcon":"true"} %}
</div>
{% endif %}
</div>
{% sw_include '@Storefront/wishlist/box/pixup-reco-box.html.twig' with {
pixupReco: wishlist.pixupReco
} only %}
{% endfor %}
{% endblock %}