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

{% trans "Report an Observation" %}

{% trans "Help us improve by reporting issues you notice" %}

{% trans "Anonymous Reporting" %}

{% trans "You can submit this report anonymously. Providing your information is optional but may help us follow up if needed." %}

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %} {{ form.website }}
{{ form.category }}
{{ form.title }}
{{ form.description }}

{% trans "Please describe what you observed in detail." %}

{{ form.incident_datetime }}

{% trans "Click to upload files" %}

{% trans "Images, PDF, Word, Excel (max 10MB each)" %}

{% trans "Providing your information helps us follow up if needed. Leave blank to submit anonymously." %}

{{ form.reporter_staff_id }}
{{ form.reporter_name }}
{{ form.reporter_phone }}
{{ form.reporter_email }}
{% endblock %} {% block extra_js %} {% endblock %}