{% extends "cm_portal/geriatric_index.html" %} {% block title %}| Physician Profile{% endblock %} {% block page_title %}| Physician Profile{% endblock %} {% block content %}

Dr. {{ physician.first_name }} {% if physician.middle_name %} {{ physician.middle_name|first }}. {% endif %} {{ physician.last_name }}

{% if physician.middle_name %}{% endif %} {% if physician.phone_number_1 %}{% endif %} {% if physician.phone_number_2 %}{% endif %} {% if physician.mobile_number_1 %}{% endif %} {% if physician.mobile_number_2 %}{% endif %}
First Name: {{ physician.first_name }}
Middle Name: {{ physician.middle_name }}
Last Name: {{ physician.last_name }}
Specialties: {{ physician.specialties }}
Phone number 1: {{ physician.phone_number_1 }}
Phone number 2: {{ physician.phone_number_2 }}
Mobile number 1: {{ physician.mobile_number_1 }}
Mobile number 2: {{ physician.mobile_number_2 }}
{% if physician.clinic_set.all %}
{% for clinic in physician.clinic_set.all %} {% endfor %}
Clinic Address Room Clinic Hours
{{ clinic.name_of_clinic }} {{ clinic.address }} {{ clinic.room }} {{ clinic.clinic_hours }}
{% endif %} {% if perms.cm_portal.change_physician and perms.cm_portal.delete_physician %} Edit Delete {% elif perms.cm_portal.change_physician %} Edit Delete {% else %} Edit Delete {% endif %}
{% endblock %}