{% include 'AdminTemplates/adminDash.html' %} {% load static %} {% block body %}
{% for pro in product_id %}
{% csrf_token %}
  • Company

    {{pro.company}}
  • Contact Person

    {{pro.contact_person}}
  • Contact Number

    {{pro.contact_no}}
  • Email

    {{pro.email}}
  • {% if pro.product_category == categoryid %}
  • Product Category

    {{categoryname}}
  • {% else %}
  • Product Category (*other category)

    {{pro.other_category}}
  • {% endif %}
  • Product Name

    {{pro.product_name}}
  • Product Code

    {{pro.product_code}}
  • Brand

    {{pro.brand_name}}
  • Model No.

    {{pro.model_no}}
  • Original Price

    {% if pro.org_price == "" %}
    No Original Price
    {% else %}
    {{pro.org_price}}
    {% endif %}
  • Previous Price (QAR)

    {{pro.market_price}}
  • Current Price (QAR)

    {{pro.price}}
  • Model Number

    {{pro.model_no}}
  • Brand Name

    {{pro.brand_name}}
  • Manufacturing Country

    {{pro.manufacturing_country}}
  • Manufacturing Year

    {% if pro.manufacturing_year == "0000" %}
    {% else %}
    {{pro.manufacturing_year}}
    {% endif %}
  • ExpDate

    {% if pro.exp_date == "0000" %}
    **Not Added
    {% else %}
    {{pro.exp_date}}
    {% endif %}
  • Dimensions

    {{pro.dimensions}}
  • Quantity

    {{pro.quantity}}
  • Status

    {% if pro.status == "1" %}
    Active
    {% else %}
    Not Active
    {% endif %}
  • Enq. Date

    {{pro.enq_date}}
  • Product Description

    {{pro.brand_name}}
  • Countries

    {% for country in related_countries %} {% endfor %}
  • User

    {{pro.user_id}}
  • status

    {% if pro.status == "1" %} {% elif pro.status == "0" %} {% else %} {% endif %}
{% endfor %}
{% for image in image_details %} {% endfor %}
{% endblock body %}