{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}

Admin Dashboard

Manage and monitor ticket submissions

{% if tickets %} Export Excel {% endif %}

{{ total_tickets }}

Total Tickets

{{ tickets|map(attribute='email')|unique|list|length }}

Unique Customers

{{ tickets|map(attribute='country')|unique|list|length }}

Countries

{{ tickets|selectattr('timestamp')|list|length }}

Records Today

Ticket Data Records
{% if tickets %}
{% for ticket in tickets %} {% endfor %}
Email Phone Name Tickets Ticket Number Country Region Timestamp Actions
{{ ticket.email }} {{ ticket.phone }} {{ ticket.name }} {{ ticket.tickets }} {{ ticket.ticket_number }} {{ ticket.country }} {{ ticket.region }} {{ ticket.timestamp }}
Showing {{ tickets|length }} of {{ total_tickets }} records
{% else %}

No Ticket Data Available

No tickets have been submitted yet. Use the API endpoint to add ticket data.

View API Documentation
{% endif %}
Waiting List for Next Event {{ total_waiting }}
{% if waiting_list %}
{% for entry in waiting_list %} {% endfor %}
Email Website Sign-up Date Actions
{{ entry.email }} {{ entry.website or 'Not provided' }} {{ entry.timestamp }}
{% else %}
No one waiting yet

People who sign up for your next event will appear here.

{% endif %}