{% extends CMS_TEMPLATE %} {% load i18n cms_tags %} {% block sidebar %}{% include "customers/includes/profile_menu.html" %}{% endblock %} {% block content %}
{% csrf_token %}

{% trans "Wish list" %}

{% for item in items %} {% if item.variant %} {% include "customers/includes/product_line.html" with product=item.variant %} {% else %} {% include "customers/includes/product_line.html" with product=item.product %} {% endif %} {% empty %}
{% trans "The wish list is empty." %}
{% endfor %}
{% endblock %}