{% load static %} HealthStack
{% 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 %}
{% 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 %}

All Hospitals


{% for hospital in hospitals %} {% endfor %}
{% include 'pagination.html' with queryset=hospitals custom_range=custom_range %}
{% include 'footer.html' %}