{% extends "shop/base.html" %} {% load i18n %} {% load thumbnail %} {% load satchmo_category %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Wishlist" %}
  • {% endblock %} {% block content %} {% if wishlist_message %}
    {{ wishlist_message }}
    {% endif %}

    {% trans "Wishlist" %}

    {% for wish in wishlist %} {% with wish.product as product %} {% if forloop.first %} {% endif %} {% endwith %} {% endfor %}
    {% endblock %}