{% extends "base.html" %} {% block title %}Master Admin Portal - Eventology{% endblock %} {% block content %}

Master Administration

Manage Event Management Companies, oversee global event statistics, and approve registrants.

System Mode: Online
{{ total_emcs }} Event Companies
{{ total_events }} Active Events
{{ total_guests }} Total Invited Guests

Global RSVP Distribution Summary

Live Counts

Confirmed Attending ({{ rsvp_attending }}) {% if total_guests > 0 %}{{ ((rsvp_attending / total_guests) * 100)|round(1) }}{% else %}0{% endif %}%

Declined/Not Attending ({{ rsvp_declined }}) {% if total_guests > 0 %}{{ ((rsvp_declined / total_guests) * 100)|round(1) }}{% else %}0{% endif %}%

Tentative Responses ({{ rsvp_tentative }}) {% if total_guests > 0 %}{{ ((rsvp_tentative / total_guests) * 100)|round(1) }}{% else %}0{% endif %}%

No Response/Pending ({{ rsvp_pending }}) {% if total_guests > 0 %}{{ ((rsvp_pending / total_guests) * 100)|round(1) }}{% else %}0{% endif %}%

Event Management Companies (EMCs)

{% if emc_list %} {% for emc in emc_list %} {% endfor %} {% else %} {% endif %}
Company Name Account Owner Registered Date Current Status Action Controls
{{ emc.company_name }} {{ emc.username }} {{ emc.created_at|dateformat }} {% if emc.status == 'approved' %} Approved {% elif emc.status == 'pending' %} Pending Review {% else %} Blocked {% endif %}
{% if emc.status == 'pending' %}
{% elif emc.status == 'approved' %}
{% elif emc.status == 'blocked' %}
{% endif %}
No Event Management Companies registered yet.

All Tracked Events

{% if events %} {% for event in events %} {% endfor %} {% else %} {% endif %}
Event Details Scheduled Date Hosting Venue Managing Company RSVP Status Actions
{{ event.title }}

{{ event.guests|length }} Guests Invited

{{ event.date|datetimeformat }} {{ event.location }} {{ event.emc.company_name }} {% set total = event.guests|length %} {% set yes = event.guests|selectattr('rsvp_status', 'equalto', 'attending')|list|length %} {% if total > 0 %} Attending: {{ yes }}/{{ total }} {% else %} Empty Guest List {% endif %}
No events currently scheduled in the system.
{% endblock %}