{% extends "base.html" %}{% set active="dashboard" %}{% block title %}Reception Dashboard{% endblock %}{% block page_title %}Reception Dashboard{% endblock %} {% block content %}
Today's Scheduled
{{ stats.today }}
📅
Active Patients
{{ stats.patients }}
👤
Total Pending
{{ stats.scheduled }}
🗓
Cancelled Today
{{ stats.cancelled }}
➕ Schedule New Appointment 🔍 Search Patients
Today's ScheduleFull View →
{% if today_apts %}
{% for a in today_apts %}{% endfor %}
TimePatientPhoneDoctorServiceStatusActions
{{ a.appointment_datetime[11:16] }} {{ a.patient_name }}{{ a.phone or '—' }} {{ a.doctor_name }}{{ a.service_name or '—' }} {{ a.status }} Edit
{% else %}
📭

No appointments today.

{% endif %}
{% endblock %}