{% load i18n %} {% load wishlist_tags %} {% if user.is_authenticated %} {% with wishlists=user.wishlists.all %} {# Select wishlists that contains product #} {% wishlists_containing_product wishlists product as product_wishlists %} {% if wishlists %}
{% trans "Add to wish list" %}
{% else %} {# 1 or no existing wishlists - show a simple button #}
{% csrf_token %}
{% endif %} {% for wishlist in product_wishlists %}
{% csrf_token %} {% blocktrans with name=wishlist.name url=wishlist.get_absolute_url %} Product is in '{{ name }}' wishlist. {% endblocktrans %}
{% endfor %} {% endwith %} {% else %}
{% endif %}