{% if user.is_authenticated and user.is_patient %}
{% include 'patient_navbar.html' %}
{% endif %}
{% if user.is_authenticated and user.is_doctor %}
{% include 'doctor-navbar.html' %}
{% endif %}
Hospital Departments
{% comment %}
{% endcomment %}
{% if user.is_authenticated and user.is_patient %}
{% include 'patient-sidebar.html' %}
{% endif %}
{% if user.is_authenticated and user.is_doctor %}
{% include 'doctor-sidebar.html' %}
{% endif %}