{% extends 'common/base.html' %} {% load static %} {% block title %}Category Management{% endblock %} {% block content %}


Processing...
{% if messages %} {% for msg in messages %} {% endfor %} {% endif %}

Category Management

Add New Category
{% csrf_token %}
Category List
{% for item in category_list %} {% empty %} {% endfor %}
Image Name Rank Status Action
{% if item.image %} {% else %} No Image {% endif %} {{ item.name }} {{ item.ordering }} {% if item.status == True %} Active {% else %} Inactive {% endif %} Edit Del
No categories found
{% endblock %}