{% extends "base.html" %} {% block title %}Briefing del día - {{ clinic_name }}{% endblock %} {% block content %}

Briefing del {{ today }}

{% if appointments is not none %}

Citas de hoy ({{ appointments | length }})

{% if appointments %}
{% for a in appointments %}
{{ a.start_time[11:16] if a.start_time else '' }}
{{ a.patient_name or '—' }}
Estado
{{ a.status }}
{% endfor %}
{% else %}

No hay citas programadas para hoy.

{% endif %} {% endif %} {% if recalls is not none %}

Rellamadas vencidas ({{ recalls | length }})

{% if recalls %}
{% for r in recalls %}
{{ r.reason }}
{{ r.patient_name or '—' }}{% if r.phone %} · {{ r.phone }}{% endif %}
Prioridad
{{ r.priority }}
{% endfor %}
{% else %}

No hay rellamadas vencidas.

{% endif %} {% endif %} {% if budgets is not none %}

Presupuestos sin respuesta ({{ budgets | length }})

{% if budgets %}
{% for b in budgets %}
{{ b.number }}
{{ b.patient_name or '—' }}
Importe
{{ b.total }}
{% endfor %}
{% else %}

No hay presupuestos pendientes de respuesta.

{% endif %} {% endif %}

Resumen automático generado por el copiloto de DentalPin. Puedes desactivarlo o cambiar la hora en Ajustes → Copilot.

{% endblock %}