{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}

Shop the best products

Browse items, compare prices, and find great deals near you.

Items: {{ products_count }}
Featured: {{ featured_count }}
In Stock: {{ in_stock_count }}
All Featured {% for category in categories %} {{ category }} {% endfor %}
{% if products %}
{% for product in products %}
{% if product.image %}{{ product.name }}{% else %}
No image available
{% endif %}
{% if product.featured %}Featured{% endif %} {{ product.category }} {% if product.is_low_stock %}Low Stock{% endif %}

{{ product.name }}

{{ product.description|truncatewords:16 }}

Rs. {{ product.display_price|floatformat:2 }} {% if product.discount_price %} Rs. {{ product.price|floatformat:2 }} {% endif %}

Stock: {{ product.stock|default:0 }}

{% endfor %}
{% else %}

No products found.

Try adjusting search or filters.

{% endif %} {% endblock %}