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

{% trans "Import Call Records" %}

{% trans "Upload call records from your call recording system" %}

{% trans "Upload CSV File" %}

{% csrf_token %}

{% trans "Important Notes" %}

  • • {% trans "File must be in CSV format with exact headers" %}
  • • {% trans "Duplicate records (by Media ID) will be skipped" %}
  • • {% trans "Invalid records will be skipped with error reporting" %}
  • • {% trans "Large files may take a few moments to process" %}
{% trans "Cancel" %}

{% trans "CSV Format Guide" %}

{% trans "Your CSV file must contain the following headers:" %}

{% for header in sample_headers %} {{ header }} {% endfor %}

{% trans "Required Fields" %}

  • Media ID - {% trans "Unique identifier (UUID format)" %}
  • Call Start - {% trans "Call start date/time (MM/DD/YYYY H:MM AM/PM)" %}
  • First Name - {% trans "Caller first name" %}
  • Last Name - {% trans "Caller last name" %}
  • Department - {% trans "Department name" %}
  • Length - {% trans "Call duration (HH:MM:SS)" %}
  • File Name - {% trans "Recording file name" %}

{% trans "Example Data Format" %}

Media ID Call Start First Name Last Name Department Length File Name
aade2430-2eb0-4e05-93eb-9567e2be07ae 10/30/2025 7:57:48 PM Patient Relation Patient Relation 00:01:11 2025-10-30\x1379 19.57.48.467.mp3
{% endblock %}