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

{% 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 %} {% if hospitals %}
{% for hospital in hospitals %} {% with hospital_id_str=hospital.id|stringformat:"s" %}

{{ hospital.name }}

{% if hospital.city %}
{{ hospital.city }} {% if hospital.country %}, {{ hospital.country }}{% endif %}
{% else %}
{% trans "Location not specified" %}
{% endif %}
{% endwith %} {% endfor %}
{% else %}

{% trans "No Hospitals Available" %}

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

{% endif %} {% if hospitals %}
{% trans "Back to Dashboard" %}
{% endif %}

{% trans "Tip" %}

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

{% endblock %}