{% extends "base/f_base.html" %} {% load humanize %} {% load static %} {% block header %} {% endblock header %} {% block content %}
{% if selected_cat_ids %}
{% for cat in store_category %} {% if cat.id in selected_cat_ids %}
{{ cat.title }}
{% endif %} {% endfor %}
{% endif %}
{% for product in store_product %}
{{ product.title }}

{{ product.title }}

{{product.sale_price|intcomma}} تومان

{{product.total_sales|intcomma}}
{% endfor %}
{% endblock content %}