{% extends 'root/base.html' %} {% load static %} {% block title %} Catalog Configuration {% endblock %} {% block maincontent %} {% include 'root/loader.html' %}

Catalog Configuration And Mapping


{% csrf_token %}
{% if catalog_query.count > 0 %}
Total number of results found :{{catalog_query.count}}
{% elif catalog_query.count == 0 %}
No Results Found
{% endif %} {% if catalog_query %}
{% for catalog_detail in catalog_query %} {% endfor %}
Catalog Id Catalog Description Catalog Name Product Type Update Catalog Assign Products Unassign Products View Assigned Products Activate
{{catalog_detail.catalog_id}} {{catalog_detail.description}} {{catalog_detail.name}} {{catalog_detail.prod_type}} Update Assign Unassign View
{% endif %}
{% endblock %}