{% extends "ucp/base_ucp.html" %} {% set active = "calls" %} {% block content %}
| Data | Origem | Destino | Duracao | Status |
|---|---|---|---|---|
| {{ c.calldate.strftime("%d/%m %H:%M") if c.calldate else "-" }} | {{ c.src or "-" }} | {{ c.dst or "-" }} | {{ "%02d:%02d"|format(c.duration // 60, c.duration % 60) if c.duration else "-" }} | {{ c.disposition or "-" }} |
Nenhuma chamada encontrada.
{% endif %}