{% extends "shopit/base.html" %} {% load i18n shopit_tags %} {% block page_title %}{% trans "Watch" %}{% endblock %} {% block content %} {% if watch_items %} {% for item in watch_items %} {% endfor %}
{% trans "Product" %} {% trans "Price" %} {% trans "Add to cart" %}
{{ item.product.name }} {{ item.product.price }} {% add_to_cart item.product %}
{% else %}

{% trans "You're not watching any items." %}

{% endif %} {% endblock %}