{% extends "layouts/public_base.html" %} {% load i18n static %} {% block title %}{% trans "Track Your Observation" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% get_available_languages as LANGUAGES %} {% get_current_language as LANGUAGE_CODE %} {% for lang_code, lang_name in LANGUAGES %} {% if lang_code == 'en' %}🇬🇧{% elif lang_code == 'ar' %}🇸🇦{% endif %} {{ lang_name }} {% endfor %}
Al Hammadi Hospital

{% trans "Track Your Observation" %}

{% trans "Enter your tracking code below to see real-time updates on your observation." %}

{% csrf_token %}

{% trans "Found in your confirmation email" %}

{% if error_message %}

{% trans "Tracking Code Not Found" %}

{{ error_message }}

{% endif %} {% if observation %}
{% trans "Tracking Code" %}

{{ observation.tracking_code }}

{{ observation.status }}
{% trans "Submitted" %}

{{ observation.created_at|date:"M d, Y" }}

{% trans "Category" %}

{{ observation.category.name|default:_("Not specified") }}

{% trans "Severity" %}

{{ observation.get_severity_display }}

{% if has_response %}

{% trans "Response" %}

{% if response_en %}
English
{{ response_en }}
{% endif %} {% if response_ar %}
العربية
{{ response_ar }}
{% endif %}
{% else %}

{% trans "Your observation is being reviewed. Updates will appear here." %}

{% endif %}

{% trans "For privacy reasons, detailed notes and internal communications are not shown here." %}

{% endif %}
{% endblock %}