{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Select Hospital" %} - PX360{% endblock %} {% block content %}

{% trans "Select Hospital" %}

{% trans "As a PX Admin, you can view and manage data for any hospital. Please select the hospital you want to work with:" %}

{% csrf_token %}
{% for hospital in hospitals %}
{% empty %}

{% trans "No Hospitals Available" %}

{% trans "No hospitals found in the system. Please contact your administrator." %}

{% endfor %}
{% trans "Back to Dashboard" %}

{% trans "Tip" %}

{% trans "You can change your selected hospital at any time by clicking on the hospital name in the top navigation bar." %}

{% endblock %}