{% extends "base.html" %} {% block title %}Relatorios{% endblock %} {% set active = "reports" %} {% block content %}

Relatorios de Chamadas

Total
{{ total }}
Atendidas
{{ atendidas }}
Perdidas
{{ perdidas }}
Tempo Medio
{{ tempo_formatado }}
{% if calls %}
{% for c in calls %} {% endfor %}
# Origem Destino Direcao Status Horario Data
{{ c.id }} {{ c.from_number }} {{ c.to_number or "-" }} {{ c.direction }} {{ c.status }} {% if c.started_at and c.ended_at %}{{ c.started_at.strftime("%H:%M") }}-{{ c.ended_at.strftime("%H:%M") }}{% else %}-{% endif %} {{ c.created_at.strftime("%d/%m/%Y %H:%M") if c.created_at else "-" }}
Baixar CSV
{% if total_pages > 1 %} {% endif %}
{% else %}
Nenhuma chamada encontrada no periodo.
{% endif %} {% endblock %}