{% extends 'admin/base_site.html' %} {% block title %}Categories{% endblock %} {% block page_title %}Category Management{% endblock %} {% block nav_categories %}active{% endblock %} {% block topbar_actions %} + Create Category {% endblock %} {% block content %}
{% for cat in categories %} {% empty %} {% endfor %}
# Title Level Entity Parent Created By Status Actions
{{ forloop.counter }} {% if cat.parent %}{% endif %} {{ cat.get_level_type_display }} {{ cat.get_entity_type_display }} {{ cat.parent.title|default:"-" }} {{ cat.created_by.username|default:"-" }} {% if cat.deleted_at %}Deleted {% else %}Active{% endif %}
{% if not cat.deleted_at %} Edit {% endif %}
{% csrf_token %}
No categories yet.
{% if categories.has_other_pages %}
{% if categories.has_previous %} ← Prev {% endif %} Page {{ categories.number }} of {{ categories.paginator.num_pages }} • {{ categories.paginator.count }} total {% if categories.has_next %} Next → {% endif %}
{% endif %} {% endblock %}