{% load static i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans 'KAAUH Agency Portal' %}{% endblock %}
{# Load correct Bootstrap CSS file for RTL/LTR #}
{% if LANGUAGE_CODE == 'ar' %}
{% else %}
{% endif %}
{% block customCSS %}{% endblock %}
{% if LANGUAGE_CODE == 'ar' %}
جامعة الأميرة نورة بنت عبدالرحمن الأكاديمية
ومستشفى الملك عبدالله بن عبدالعزيز التخصصي
{% else %}
Princess Nourah bint Abdulrahman University
King Abdullah bin Abdulaziz University Hospital
{% endif %}
{# Using inline style for nav background color - replace with a dedicated CSS class (e.g., .bg-kaauh-nav) if defined in main.css #}
{# Messages Block (Correct) #}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% block content %}
{% endblock %}
{# Footer (Correct) #}
{% include 'includes/delete_modal.html' %}
{# JavaScript (Left unchanged as it was mostly correct) #}
{% block customJS %}{% endblock %}