{% extends 'admin/base_site.html' %} {% block title %}{{ cat.title }}{% endblock %} {% block page_title %}Category Detail{% endblock %} {% block nav_categories %}active{% endblock %} {% block topbar_actions %} ← All Categories {% if not cat.deleted_at %}Edit{% endif %} {% endblock %} {% block content %}

{{ cat.title }}

{% if cat.deleted_at %}Deleted{% else %}Active{% endif %}

{{ cat.description|default:"No description." }}

Slug: {{ cat.slug }}
Parent: {{ cat.parent.title|default:"Root" }}
Children: {{ children|length }}
Created by: {{ cat.created_by.username|default:"-" }} - {{ cat.created_at|date:"M d, Y" }}
Updated by: {{ cat.updated_by.username|default:"-" }} - {{ cat.updated_at|date:"M d, Y" }}
{% if cat.deleted_at %}
Deleted by: {{ cat.deleted_by.username|default:"-" }} - {{ cat.deleted_at|date:"M d, Y" }}
{% endif %}
{% if children %}

Sub-categories ({{ children|length }})

{% for child in children %}
{% if child.deleted_at %}Deleted{% else %}Active{% endif %}
{% endfor %}
{% endif %}

Events in this category ({{ events|length }})

{% if events %}
{% for event in events %} {% endfor %}
TitleStatusDate
{{ event.title|truncatechars:26 }} {{ event.status|title }} {{ event.start_date|date:"M d, Y" }}
{% else %}

No events in this category.

{% endif %}
{% endblock %}