{% include 'AdminTemplates/adminDash.html' %} {% load static %} {% block body %}
{% if added %}

Product '{{added}}' is Modified

{% endif %} {% if pro_deleted %}

Product '{{pro_deleted}}' is Deleted

{% endif %}
img
{% csrf_token %} {% for pro in pro_list %} {% endfor %}
Product Name Category Brand price Qty Active Action
{% for image in pro.productimages_set.all %} {{ image.product_image.url }} {% endfor %} {{pro.product_name}} {{pro.category.category_name}} {{pro.brand}} ₹{{pro.price}} {{pro.quantity}} {% if pro.status == 1 %} {% else %} {% endif %} img img img {% if pro.special == 1 %} {% else %} {% endif %}
{% endblock body %}