{% extends "base.html" %} {% block title %}CDR{% endblock %} {% set active = "cdr" %} {% block content %}

šŸ“ž CDR - Histórico de Chamadas

šŸ“„ CSV
Total
{{ total }}
Atendidas
{{ atendidas }}
Perdidas
{{ perdidas }}
Tempo MƩdio
{{ tempo_formatado }}
{% if calls %}
{% for c in calls %} {% endfor %}
Uniq.ID Data/Hora Origem Destino Direção Duração Status
{{ c.uniqueid }}{{ c.calldate }} {{ c.call_from }} {{ c.call_to }} {% if c.direction == "outbound" %} šŸ“¤ SaĆ­da {% elif c.direction == "inbound" %} šŸ“„ Entrada {% else %} — {% endif %} {{ c.duration }} {% if c.status == "answered" %} Atendida {% elif c.status == "busy" %} Ocupado {% elif c.status == "lost" %} NĆ£o Atendida {% else %} — {% endif %}
{% if total_pages > 1 %} {% endif %} {% else %}
Nenhuma chamada encontrada no perĆ­odo.
{% endif %} {% endblock %}