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

Product '{{added}}' is Modified

{% endif %} {% if pro_deleted %}

Product '{{pro_deleted}}' is Deleted

{% endif %}
{% csrf_token %} {% for pro in pro_list %} {% endfor %}
Product Name Category Brand Company Contact Person Contact No. Expiry Date Model No. QAR price QAR Market price Qty Active Featured Action   
{% for image in pro.productimage_set.all %} {% if image.fea_img == 1 %} {{ image.product_image.url }} {% endif %} {% endfor %} {{ pro.product_name }} {{ pro.category.category_name }} {{ pro.brand }} {{ pro.company }} {{ pro.contact_person }} {{ pro.contact_no }} {{ pro.exp_date }} {{ pro.model_no }} {{ pro.price }} {{ pro.market_price }} {{ pro.quantity }} {% if pro.status == "1" %} {% else %} {% endif %} {% if pro.special == "1" %} {% else %} {% endif %} img img img
{% endblock body %}