{% extends 'admin/base_site.html' %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block nav_dashboard %}active{% endblock %} {% block topbar_actions %} {% endblock %} {% block content %}
{{ total_users }}
Total Users
View all →
{{ total_events }}
Total Events
View all →
{{ total_tickets }}
Tickets Sold
View all →
{{ total_cats }}
Categories
View all →
{{ total_tags }}
Tags
View all →
Recent Events View All
{% for event in recent_events %} {% endfor %}
TitleTagsStatusOrganiser
{{ event.title|truncatechars:26 }} {% if event.deleted_at %}Deleted{% endif %}
{% for tag in event.tags.all|slice:":2" %} {{ tag.name }} {% empty %}-{% endfor %}
{{ event.status|title }} {{ event.organiser.username }}
👥 Recent Users View All
{% for u in recent_users %} {% endfor %}
UserTypeRoleJoined
{{ u.username }}
{{ u.email }}
{{ u.account_type|title }} {{ u.role }} {{ u.date_joined|date:"M d, Y" }}
{% endblock %}