{% extends 'admin/base_site.html' %} {% block title %}Tags{% endblock %} {% block page_title %}Tag Management{% endblock %} {% block nav_tags %}active{% endblock %} {% block topbar_actions %} + New Tag {% endblock %} {% block content %}
Clear
{% for tag in tags %} {% empty %} {% endfor %}
TagSlugColorEventsCreatedStatusActions
{{ tag.name }} {{ tag.slug }} {{ tag.color }} {{ tag.events.count }} {{ tag.created_at|date:"M d, Y" }} {% if tag.deleted_at %}Deleted {% else %}Active{% endif %}
{% if not tag.deleted_at %} Edit {% endif %}
{% csrf_token %}
No tags found.
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} ← Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next → {% endif %}
{% endif %} {% endblock %}