{% load i18n %} {% load static %} {% get_current_language as LANGUAGE_CODE %} {% trans "Track Observation" %} - Al Hammadi {% if LANGUAGE_CODE == 'ar' %} {% else %} {% endif %}

{% trans "Track Your Observation" %}

{% trans "Enter your tracking code to check the status" %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if observation %}
{% trans "Tracking Code" %}

{{ observation.tracking_code }}

{{ observation.get_status_display }}

{% trans "Category" %} {{ observation.category.name|default:"Not specified" }}
{% trans "Severity" %} {{ observation.get_severity_display }}
{% trans "Submitted" %} {{ observation.created_at|date:"M d, Y" }}
{% trans "Last Updated" %} {{ observation.updated_at|date:"M d, Y" }}
{% trans "Status Progress" %}
{% trans "Submitted" %} {{ observation.created_at|date:"M d, Y H:i" }}
{% if observation.triaged_at %}
{% trans "Triaged" %} {{ observation.triaged_at|date:"M d, Y H:i" }}
{% endif %} {% if observation.assigned_to %}
{% trans "Assigned" %} {% trans "Being reviewed by our team" %}
{% endif %} {% if observation.status == 'in_progress' %}
{% trans "In Progress" %} {% trans "Action is being taken" %}
{% endif %} {% if observation.resolved_at %}
{% trans "Resolved" %} {{ observation.resolved_at|date:"M d, Y H:i" }}
{% endif %} {% if observation.closed_at %}
{% trans "Closed" %} {{ observation.closed_at|date:"M d, Y H:i" }}
{% endif %} {% if observation.status == 'rejected' %}
{% trans "Rejected" %} {% trans "This observation was not accepted" %}
{% endif %} {% if observation.status == 'duplicate' %}
{% trans "Duplicate" %} {% trans "This observation was marked as duplicate" %}
{% endif %}
{% trans "For privacy reasons, detailed notes and internal communications are not shown here." %}
{% endif %}
{% trans "Submit a new observation" %}