{% if request.session.added_product %} {% load product_tags ocyan_thumbnail basket_popup_tags static l10n i18n %} {% get_product_add_alert_content request.session.added_product as alert_content %}
{% picture alert_content.added_product.primary_image.original "100x100" upscale=False alt=Product classes="d-none d-lg-block img-fluid" %}
{% blocktranslate with added_quantity=request.session.added_quantity %}{{ added_quantity }} artikelen zijn toegevoegd aan je winkelmand{% endblocktranslate %}
{{ alert_content.added_product.get_title }}
{% if alert_content.custom_recommand_products %}

{% trans "Product recommendation" %}:

{% for item in alert_content.custom_recommand_products %}
{% include "oscar/catalogue/partials/product.html" with product=item.product atb="atb-" %}
{% endfor %}
{% endif %} {% if alert_content.recently_viewed_products %}

{% trans 'Products you recently viewed' %}:

{% for product in alert_content.recently_viewed_products %}
{% render_product product %}
{% endfor %}
{% endif %}
{% endif %}