{% extends "base.html" %}{% set active="search" %}{% block title %}Patient Search{% endblock %}{% block page_title %}Patient Search{% endblock %} {% block content %}
No patients found for "{{ q }}".
| ID | Name | Phone | Insurance | Appts | Last Visit | Actions | |
|---|---|---|---|---|---|---|---|
| #{{ p.patient_id }} | {{ p.name }}{% if not p.is_active %}Inactive{% endif %} | {{ p.email }} | {{ p.phone or '—' }} | {{ p.insurance_provider or '—' }} | {{ p.total_apts }} | {{ p.last_apt[:10] if p.last_apt else 'Never' }} | + Book History |
Enter a search term above to find patients.