{% include 'layouts/product_header.html' %}
Product List
Home
Product List
Showing
All Available Stock
{% for p in product_data %}
New
{{ p.name }}
{% set price = p.price %} {% set disc =p.discount %} {% set disc_price = price * disc /100 %}
₹{{ price - disc_price }}
₹{{ p.price }}
{% endfor %}
{% include 'layouts/footer.html' %}