{% 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.description|default:"No description." }}
Sub-categories ({{ children|length }})
{% for child in children %} {% endfor %}Events in this category ({{ events|length }})
{% if events %}| Title | Status | Date |
|---|---|---|
| {{ event.title|truncatechars:26 }} | {{ event.status|title }} | {{ event.start_date|date:"M d, Y" }} |
No events in this category.
{% endif %}