{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
{% if product.image %} {{ product.name }} {% else %}
No image available
{% endif %}

{{ product.name }}

{% if product.featured %} Featured {% endif %}
⭐ {{ product.rating|default:0 }}/5 Category: {{ product.category }} Stock: {{ product.stock|default:0 }}
Rs. {{ product.display_price|floatformat:2 }} {% if product.discount_price %} Rs. {{ product.price|floatformat:2 }} Save Rs. {{ product.savings|floatformat:2 }} {% endif %}

{{ product.description }}

Fast delivery
Secure checkout
Easy return
Back to Products {% if product.stock > 0 %} Add to Cart Buy Now {% else %} Sold Out {% endif %}
{% if related_products %} {% endif %}
{% endblock %}