{% 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.clinic_set.all %}
Clinic |
Address |
Room |
Clinic Hours |
{% for clinic in physician.clinic_set.all %}
{{ clinic.name_of_clinic }} |
{{ clinic.address }} |
{{ clinic.room }} |
{{ clinic.clinic_hours }} |
{% endfor %}
{% 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 %}