{% extends "base.html" %} {% load i18n %} {% load satchmo_category %} {% load satchmo_thumbnail %} {% block navbar %}
  • {% trans "Home" %}
  • {% trans "Wishlist" %}
  • {% endblock %} {% block sidebar %}

    {% trans "Shop Categories" %}

    {% 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 %}