{% extends "layouts/public_base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Observation Submitted" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Thank You!" %}

{% trans "Your observation has been submitted successfully." %}

{% trans "Your Reference Number" %}
{{ tracking_code }}

{% trans "Important" %}

  • {% trans "Save this reference number to check the status of your observation." %}
  • {% trans "Our team will review your observation and take appropriate action." %}
  • {% trans "You can track your observation status anytime using the reference number." %}

{% trans "Observation Summary" %}

{% trans "Category" %}

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

{% trans "Severity" %}

{{ observation.get_severity_display }}

{% trans "Status" %}

{{ observation.get_status_display }}

{% trans "Submitted" %}

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

{% endblock %} {% block extra_js %} {% endblock %}