{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "New Observation" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Back to Observations" %}

{% trans "New Observation" %}

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %} {% if communication_request %} {% endif %}
{{ form.hospital }} {% if form.hospital.errors %}
{{ form.hospital.errors.0 }}
{% endif %}
{{ form.location_type }} {% if form.location_type.errors %}
{{ form.location_type.errors.0 }}
{% endif %}
{{ form.area }} {% if form.area.errors %}
{{ form.area.errors.0 }}
{% endif %}
{{ form.assigned_department }} {% if form.assigned_department.errors %}
{{ form.assigned_department.errors.0 }}
{% endif %}
{{ form.section }} {% if form.section.errors %}
{{ form.section.errors.0 }}
{% endif %}
{{ form.assigned_to }} {% if form.assigned_to.errors %}
{{ form.assigned_to.errors.0 }}
{% endif %}
{{ form.incident_datetime }} {% if form.incident_datetime.errors %}
{{ form.incident_datetime.errors.0 }}
{% endif %}
{{ form.patient_file_number }} {% if form.patient_file_number.errors %}
{{ form.patient_file_number.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {% endblock %}