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

{% trans "Call Records" %}

{% trans "Manage and analyze imported call center recordings" %}

{% trans "All Calls" %}

{{ stats.total_calls }}

{% trans "Total records" %}

{% trans "Inbound" %}

{{ stats.inbound_calls }}

{% trans "Incoming calls" %}

{% trans "Outbound" %}

{{ stats.outbound_calls }}

{% trans "Outgoing calls" %}

{% trans "Duration" %}

{{ stats.total_duration_formatted }}

{% trans "Avg:" %} {{ stats.avg_duration_formatted }}

{% trans "Evaluated" %}

{{ stats.evaluated_calls }}

{% trans "Not evaluated:" %} {{ stats.not_evaluated_calls }}

{% trans "Filters" %}

{% trans "Call Records" %}

{% for record in call_records %} {% empty %} {% endfor %}
{% 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" %}

{% if page_obj.has_other_pages %}

{% 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 }}

{% if page_obj.has_previous %} {% trans "Previous" %} {% endif %} {{ page_obj.number }} {% if page_obj.has_next %} {% trans "Next" %} {% endif %}
{% endif %}
{% endblock %}