{% extends 'root/base.html' %} {% load static %} {% block title %} Product and service Config {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Product And Service Configuration


{% csrf_token %}

Advanced Search

{% if product_details_query.count > 0 %}
Total number of results found :{{product_details_query.count}}
{% elif product_details_query.count == 0 %}
No Results Found
{% endif %} {% if product_details_query %}
{% for product_detail in product_details_query %} {% endfor %}
Product Description Product Id Supplier Id Lead Time Unit Price Currency Product Category action
{{product_detail.short_desc}}
{% if product_detail.mapped_in_catlog %} {% endif %} {% if product_detail.exist_in_transaction_table %} {% endif %}
{{product_detail.product_id}} {{product_detail.supplier_id}} {{product_detail.lead_time}} {{product_detail.unit}} {{product_detail.price}} {{product_detail.currency}} {{product_detail.prod_cat_id}} delete_outline
{% endif %}
{% endblock %}