{% 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 %}
| # | 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 %}
|
||
| No categories yet. | |||||||||