{% extends "layouts/base.html" %} {% block title %}View Call Campaign{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Review call results and follow up with every contact in the campaign.
| # | 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 %}
|