{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}Call Center - PX360{% endblock %} {% block content %}

Call Center

Monitor call center interactions and satisfaction

Total Calls

{{ stats.total }}

Avg Satisfaction

{{ stats.avg_satisfaction|floatformat:1 }}/5.0

Low Ratings

{{ stats.low_rating }}

{% for interaction in interactions %} {% empty %} {% endfor %}
Caller Subject Type Agent Rating Duration Date Actions
{% if interaction.patient %} {{ interaction.patient.get_full_name }}
MRN: {{ interaction.patient.mrn }} {% else %} {{ interaction.caller_name }}
{{ interaction.caller_phone }} {% endif %}
{{ interaction.subject|truncatewords:8 }} {{ interaction.get_call_type_display }} {% if interaction.agent %} {{ interaction.agent.get_full_name }} {% else %} - {% endif %} {% if interaction.satisfaction_rating %} {{ interaction.satisfaction_rating }}/5 {% else %} - {% endif %} {% if interaction.call_duration_seconds %} {{ interaction.call_duration_seconds|floatformat:0 }}s {% else %} - {% endif %} {{ interaction.call_started_at|date:"M d, Y H:i" }}

No interactions found

{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}