{% extends "base.html" %} {% set active = "patients" %} {% block title %}Patient Management{% endblock %} {% block page_title %}Patient Management{% endblock %} {% block content %} {% if msg %}
| ID | Name | Phone | Insurance | Status | Actions | |
|---|---|---|---|---|---|---|
| #{{ p.patient_id }} | {{ p.name }} | {{ p.email }} | {{ p.phone or '—' }} | {{ p.insurance_provider or '—' }} | {{ 'Active' if p.is_active else 'Inactive' }} | |
No patients found. | ||||||