{% extends "base.html" %} {% block title %}CDR{% endblock %} {% set active = "cdr" %} {% block content %}
| 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 %} |