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

Call Queue

{{ calls.paginator.count }} Pending Calls
{% for call in calls %} {% empty %} {% endfor %}
Voter Phone Assigned Volunteer Comments Scheduled Actions
{{ call.voter.first_name }} {{ call.voter.last_name }} {% if call.voter.phone %} {% else %} - {% endif %} {% if call.volunteer %} {{ call.volunteer }} {% else %} Unassigned {% endif %} {{ call.comments|default:"-" }} {{ call.created_at|timesince }} ago
{% csrf_token %}

The call queue is currently empty.

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