{% extends "base.html" %} {% set active_nav = "clinicians" %} {% block title %}Clinicians - LSMC Hub{% endblock %} {% block content %}
View and manage clinician records
| Name | EUID | Credentials | NPI | Specialty | Contact | Status | |
|---|---|---|---|---|---|---|---|
| {{ clinician.full_name }} | {{ clinician.id }} | {{ clinician.credentials or "—" }} | {{ clinician.npi or "—" }} | {{ clinician.specialty or "—" }} | {% if clinician.email %} {{ clinician.email }} {% elif clinician.phone %} {{ clinician.phone }} {% else %} — {% endif %} | {% if clinician.is_active %} Active {% else %} Inactive {% endif %} | View |
No clinicians found
{% if search %}Try a different search term
{% else %} {% if user.can_write %} Add Clinician {% endif %} {% endif %}