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

    {{pro.product_name}}
  • Product Code

    {{pro.product_code}}
  • Brand

    {{pro.brand}}
  • Model No.

    {{pro.model_no}}
  • {% if pro.category_id == categoryid %}
  • Product Category

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

    {{pro.other_category}}
  • {% endif %}
  • Company

    {{pro.company}}
  • Contact Person

    {{pro.contact_person}}
  • Contact Number

    {{pro.contact_no}}
  • Email

    {{pro.email}}
  • Manufacturing Country

    {{pro.manufacturing_country}}
  • This item is sold due to

    {{pro.reason_to_sell}}
  • Manufacturing Year

    {{pro.manufacturing_year}}
  • Quantity

    {{pro.quantity}}
  • Date Added

    {{pro.date_added}}
  • ExpDate

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

    {% if pro.org_price == "" %}
    No Original Price
    {% else %}
    {{pro.org_price}}
    {% endif %}
  • Price

    {{pro.price}}
  • Previous Price

    {{pro.market_price}}
  • Status

    {% if pro.status == "1" %} {% else %} {% endif %}
  • Featured

    {% if pro.special == "1" %} {% else %} {% endif %}
  • Countries

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

    {{pro.description}}
{% for image in to_get_raw %} {% if image.product_image %} {% endif %} {% endfor %}
{% endfor %}
{% endblock body %}