{% extends "oscar/customer/wishlists/wishlists_list.html" %} {% load i18n %} {% block tabcontent %} {% if wishlists %} {% for wishlist in wishlists %} {% endfor %}
{% trans 'Name' %} {% trans 'Number of products' %} {% trans "Visibility" %}
{{ wishlist.name }} {{ wishlist.lines.count }} {{ wishlist.visibility }} {% trans "Edit" %} {% trans "Copy" %}
{% include "oscar/partials/pagination.html" %} {% else %}

{% trans "You don't have any wish lists yet." %}

{% endif %}

{% trans 'Create a new wish list' %}

{% endblock tabcontent %}