{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Products" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Products" %}

{% for product in object_list %}

{{ product }}

{{ product.description|linebreaks }} {% endfor %} {% include "_pagination.html" %} {% endblock %}