{% extends 'app/base.html' %} {% load static %} {% block title %} Product Details {% endblock title %} {% block content %} {% comment %}

Product Details {{pk}}

{% endcomment %} {% comment %}

{{product.title}}

{% endcomment %}
{{product}}

{{product.title}}

Rs {{product.selling_price}} Rs {{product.discount}}



Product Description

  • {{product.description}}

{% if not request.user.is_superuser %}
{% csrf_token %}
{% if request.user.is_authenticated %} {% if wishlist %} Remove to Wishlist {% else %} Add to Wishlist {% endif %} {% endif %} {% endif %}
{% endblock content %} {% block JS %} {% comment %} {% endcomment %} {% endblock JS %}