{% extends "base.html" %} {% block title %}Master Admin Portal - Eventology{% endblock %} {% block content %}
Manage Event Management Companies, oversee global event statistics, and approve registrants.
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 %}%
| 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. | ||||
| 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. | |||||