{% extends 'layout/default.html' %} {% load i18n %} {% block title %}{% translate "Category List" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Categories" %} {% endblock %} {% block breadcumbfirst %} Manage Categories {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Category List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Reset
{% if categories %} {% for category in categories %} {% endfor %}
Sr.No CATEGORY NAME STATUS ALLOW EDIT PRICE ACTIONS
{{category.category_name}} {% if category.get_status == 'Active' %} {{ category.get_status }} {% else %} {{ category.get_status }} {% endif %} {% if category.allow_price_edit == True %} Yes {% else %} No {% endif %} Select
{% else %} No Record Found. {% endif %}
{% endblock %} {% block script %} {% endblock script%}