{% extends "base.html" %} {% block title %}Atendimentos{% endblock %} {% set active = "attendances" %} {% block content %}
| ID | Protocolo | NĂşmero | Agente | Status | InĂcio | Ações |
|---|---|---|---|---|---|---|
| {{ a.id }} | {{ a.protocol or "—" }} | {{ a.caller_num or "—" }} | {{ a.agent_name or "—" }} | {{ a.status }} | {{ a.created_at.strftime("%d/%m %H:%M") if a.created_at else "—" }} | {% if a.status != "resolved" %} {% endif %} |