{% extends "shopit/base.html" %} {% load i18n shopit_tags %} {% block page_title %}{% trans "Products" %}{% endblock %} {% block content %}
{# Filter by attributes #} {% get_attributes as attributes %} {% if attributes %}
{% trans "Attributes" %}
{% for attr in attributes %}
{% endfor %}
{% endif %} {# Filter by price #} {% get_price_steps 3 as price_steps %} {% if price_steps %}
{% trans "Price from / price to" %}
{% endif %}
{% for product in product_list %}

{{ product }}

{{ product.caption|linebreaksbr }}

{% trans "Details" %}
{% empty %}

{% trans "No products." %}

{% endfor %}
{% endblock %}