{% extends "base.html" %} {% block title %}Calling Room: {{ event.title }} - Eventology{% endblock %} {% block content %}
Back to Campaigns

Call Center: {{ event.title }}

Go down the list below, contact each invitee, and record their response.

{{ guests|length }} Assigned Contacts

Assigned Calling Queue

{% for guest in guests %} {% endfor %}
Invitee Name Phone / Contact RSVP Status Roster Action
{{ guest.name }} {% if guest.notes %}

📝 {{ guest.notes }}

{% endif %}
{{ guest.phone or 'No number' }}
{{ guest.email or '' }}
{% if guest.phone %} {% endif %}
{% if guest.rsvp_status == 'attending' %} Attending {% elif guest.rsvp_status == 'not_attending' %} Declined {% elif guest.rsvp_status == 'tentative' %} Tentative {% else %} Pending {% endif %}
{% if not guest.call_completed_at %}
{% else %} Done ✓ {% endif %}

Timeline Reference

Review schedules and locations to answer guest inquiries during calls.

{% if schedule %}
{% for item in schedule %}
{{ item.start_time|datetimeformat('%I:%M %p') }}
{{ item.title }}

📍 {{ item.location or 'Main Venue' }}
{{ item.description or 'No extra notes.' }}

{% endfor %}
{% else %}

No sub-event schedule is currently uploaded by the company.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}