{% extends "base.html" %} {% set active = "patients" %} {% block title %}Patient Management{% endblock %} {% block page_title %}Patient Management{% endblock %} {% block content %} {% if msg %}
{{ msg[1] }}
{% endif %}
{% if q %}Clear{% endif %}
{% for p in patients %} {% else %} {% endfor %}
IDNameEmailPhoneInsuranceStatusActions
#{{ p.patient_id }} {{ p.name }} {{ p.email }} {{ p.phone or '—' }} {{ p.insurance_provider or '—' }} {{ 'Active' if p.is_active else 'Inactive' }}
{% if p.is_active %} {% else %} {% endif %}
🔍

No patients found.

{% endblock %}