{% 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 found in the system." %}
{% endfor %}
{% trans "Back to Dashboard" %}
{% endblock %}