{% extends "admin/dashboard.html" %} {% load static %} {% block title %} Admin | Categories List {% endblock title %} {% block content %}

All Categories List

Add Category
{% for category in categories %} {% empty %} {% endfor %}
ID Categories Parent Category Status Created At Action
{{ category.id }}

{{ category.name }}

{{ category.parent_category }} {% if category.status == 1 %} Active {% else %} Inactive {% endif %} {{ category.created_at }}
No categories available
{% endblock content %}