{% extends 'layouts/base.html' %} {% load i18n %} {% load static %} {% block title %}{% trans "Call Records" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Manage and analyze imported call center recordings" %}
{{ stats.total_calls }}
{% trans "Total records" %}
{{ stats.inbound_calls }}
{% trans "Incoming calls" %}
{{ stats.outbound_calls }}
{% trans "Outgoing calls" %}
{{ stats.total_duration_formatted }}
{% trans "Avg:" %} {{ stats.avg_duration_formatted }}
{{ stats.evaluated_calls }}
{% trans "Not evaluated:" %} {{ stats.not_evaluated_calls }}
| {% trans "Date/Time" %} | {% trans "Caller" %} | {% trans "Department" %} | {% trans "Type" %} | {% trans "Duration" %} | {% trans "Evaluated" %} | {% trans "File" %} |
|---|---|---|---|---|---|---|
|
{{ record.call_start|date:"M d, Y" }} {{ record.call_start|date:"h:i A" }} |
{{ record.caller_full_name|default:"-" }} {% if record.inbound_name %}{{ record.inbound_name }} {% endif %} |
{{ record.department|default:"-" }} {% if record.extension %}Ext: {{ record.extension }} {% endif %} |
{% if record.is_inbound %} {% trans "Inbound" %} {% elif record.is_outbound %} {% trans "Outbound" %} {% else %} - {% endif %} |
{{ record.call_length|default:"-" }} |
{% if record.evaluated %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %} |
{{ record.file_name|default:"-" }} |
|
{% trans "No call records found" %} {% trans "Import a CSV file to get started" %} |
||||||
{% trans "Showing" %} {{ page_obj.start_index }}-{% if page_obj.has_next %}{{ page_obj.end_index }}{% else %}{{ page_obj.count }}{% endif %} {% trans "of" %} {{ page_obj.count }}