{% extends 'layouts/base.html' %} {% load i18n %} {% load pyaa %} {% load pyaa_format %} {% block content %}

{% translate "title.shop-products.index" %}

{% if page_obj %}
{% for product in page_obj %} {{ product.name }}

{{ product.name }}

{% if product.description %}

{{ product.description|striptags|truncatewords:10 }}

{% endif %}

{{ product.price|format_currency:product.currency }}

{% endfor %}
{% include 'partials/paginator.html' %} {% else %} {% include 'partials/empty_data.html' %} {% endif %}
{% endblock content %}