{% extends "shopit/base.html" %} {% load i18n shopit_tags %} {% block page_title %}{% trans "Watch" %}{% endblock %} {% block content %} {% if watch_items %}
{% trans "Product" %} | {% trans "Price" %} | {% trans "Add to cart" %} |
---|---|---|
{{ item.product.name }} | {{ item.product.price }} | {% add_to_cart item.product %} |
{% trans "You're not watching any items." %}
{% endif %} {% endblock %}