{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "New Observation" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}
{% trans "Observation Details" %}
{% trans "Describe what was observed" %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.title }} {% if form.title.errors %}
{{ form.title.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}

{% trans "Please describe what you observed in detail (at least 10 characters)." %}

{% trans "Low" %}
{% trans "Medium" %}
{% trans "High" %}
{% trans "Critical" %}
{% if form.severity.errors %}
{{ form.severity.errors.0 }}
{% endif %}
{% trans "Location & Timing" %}
{% trans "Where and when did this occur?" %}
{{ form.location_text }} {% if form.location_text.errors %}
{{ form.location_text.errors.0 }}
{% endif %}
{{ form.incident_datetime }} {% if form.incident_datetime.errors %}
{{ form.incident_datetime.errors.0 }}
{% endif %}
{% trans "Assignment" %}
{% trans "Optionally assign to a department or user" %}
{{ form.assigned_department }} {% if form.assigned_department.errors %}
{{ form.assigned_department.errors.0 }}
{% endif %}
{{ form.assigned_to }} {% if form.assigned_to.errors %}
{{ form.assigned_to.errors.0 }}
{% endif %}
{% trans "Attachments" %}
{% trans "Upload supporting documents or images" %}

{% trans "Click to upload files" %}

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

{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}