{% extends "base.html" %} {% block title %}{{ page_title }}{% endblock %} {% block meta_description %}{{ meta_description }}{% endblock %} {% block content %}
Organizer dashboard

Keep every event, signup, and export in one place.

Create new events inside the dashboard, review registration volume, and keep a quick path into attendee records without leaving this workspace.

{{ dashboard_stats.upcoming_events }}
Upcoming events
{{ dashboard_stats.confirmed_attendees }}
Confirmed attendees
{{ dashboard_stats.waitlist_total }}
Waitlist total

Event roster

See registration volume at a glance.

{% if events %}
{% for event in events %}

{{ event.title }}

{{ event.start_at|date:"M d, Y · g:i A" }} · {{ event.venue }}

Confirmed{{ event.confirmed_registrations }}
Waitlist{{ event.waitlist_registrations }}
Total{{ event.total_registrations }}
{% if event.capacity %}Capacity {{ event.capacity }} seats.{% else %}Flexible attendance limit.{% endif %}
{% endfor %}
{% else %}

No events created yet

Start by creating your first event from the dashboard, then share the public event page for registrations.

Create first event
{% endif %}

Recent attendees

Latest registrations across events.

{% if recent_registrations %}
{% for registration in recent_registrations %} {% endfor %}
Name Event Status Email Registered
{{ registration.full_name }} {{ registration.event.title }} {{ registration.get_status_display }} {{ registration.email }} {{ registration.created_at|date:"M d, g:i A" }}
{% else %}

No registrations yet

Once attendees submit the public form, their records will appear here instantly.

{% endif %}
{% endblock %}