{% extends 'base.html' %} {% block content %}

Products

All Jeans Shirts T-Shirts Jackets Shoes
{% for p in products %}
{% if p.image %} {{ p.name }} {% endif %}

{{ p.name }}

₹{{ p.price }}

View
{% empty %}

No products found.

{% endfor %}
{% endblock %}