{% extends "base.html" %} {% block title %}Briefing du jour - {{ clinic_name }}{% endblock %} {% block content %}

Briefing du {{ today }}

{% if appointments is not none %}

Rendez-vous du jour ({{ appointments | length }})

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

Aucun rendez-vous prévu pour aujourd'hui.

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

Rappels en retard ({{ recalls | length }})

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

Aucun rappel en retard.

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

Devis en attente de réponse ({{ budgets | length }})

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

Aucun devis en attente de réponse.

{% endif %} {% endif %}

Résumé automatique généré par le copilot de DentalPin. Vous pouvez le désactiver ou modifier l'heure dans Paramètres → Copilot.

{% endblock %}