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

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

{% endif %}

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

{% endblock tabcontent %}