{% extends "base.html" %} {% block content %}

Call Queue

Export CSV {% if campaign_settings.call_script %} {% endif %}
{% if is_staff %}
{% endif %}
{{ calls.paginator.count }} Pending Calls
{% for call in calls %} {% empty %} {% endfor %}
Voter Phone Assigned Comments Age Actions
{{ call.voter.first_name }} {{ call.voter.last_name }} {% if call.voter.phone %} {% else %} No phone {% endif %} {% if call.volunteer %}
{{ call.volunteer.first_name|first }}{{ call.volunteer.last_name|first }}
{{ call.volunteer }}
{% else %} Unassigned {% endif %}
{{ call.comments|default:"-" }} {{ call.created_at|timesince }}
{% csrf_token %}

The call queue is currently empty.

Click "Populate Queue" to add voters.

{% for call in calls %}
{% if call.voter.phone %} {{ call.voter.phone }} {% endif %} {% if call.volunteer %} {{ call.volunteer }} {% else %} Unassigned {% endif %}
{% if call.comments %}
Comments

{{ call.comments }}

{% endif %}
{% csrf_token %}
{% empty %}

The call queue is currently empty.

{% endfor %}
{% if calls.paginator.num_pages > 1 %}
{% endif %}
{% endblock %}