{% extends "layouts/base.html" %} {% block title %}View Call Campaign{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ campaign[0] }}

Review call results and follow up with every contact in the campaign.

Back to Campaigns
Campaign Name {{ campaign[0] }}
Created {{ campaign[1] }}

Call Attempts

{% for call in calls %} {% endfor %}
# Contact Name Phone Status Outcome Attempts Error Transcript Audio
{{ loop.index }} {{ call[1] }} {{ call[2] }} {{ call[3] }} {% if call[8] %} {{ call[8]|replace('_', ' ')|title }} {% else %} Not Analyzed {% endif %} {{ call[4] }} {{ call[5] or '' }} View
{% if call[7] %} {% else %} N/A {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}