{% extends "base.html" %} {% block title %}Chamadas{% endblock %} {% set active = "calls" %} {% block content %}

📞 Chamadas

{% for c in calls %}{% endfor %}
#OrigemDestinoDireçãoStatusDuraçãoProtocoloData
{{ c.id }}{{ c.caller_num }}{{ c.dest_num or "—" }} {{ c.direction }} {{ c.status }} {% if c.duration %}{{ c.duration }}s{% else %}—{% endif %} {{ c.protocol or "—" }} {{ c.created_at.strftime("%d/%m %H:%M") if c.created_at else "—" }}
{% endblock %}