{% extends base_layout %} {% load i18n %} {% load static %} {% block title %}{{ _("New Inquiry")}} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if source_user %} {{ _("Back to My Inquiries")}} {% else %} {{ _("Back to Inquiries")}} {% endif %}

{{ _("Create New Inquiry")}}

{{ _("Create a new patient inquiry or request")}}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ _("Organization") }}
{{ form.hospital.label_tag }} {{ form.hospital }} {% if form.hospital.help_text %} {{ form.hospital.help_text }} {% endif %} {% for error in form.hospital.errors %}
{{ error }}
{% endfor %}
{{ form.department.label_tag }} {{ form.department }} {% for error in form.department.errors %}
{{ error }}
{% endfor %}
{{ _("Contact Information")}}
{{ form.patient.label_tag }} {{ form.patient }} {% for error in form.patient.errors %}
{{ error }}
{% endfor %}
{{ form.contact_name.label_tag }} {{ form.contact_name }} {% for error in form.contact_name.errors %}
{{ error }}
{% endfor %}
{{ form.contact_phone.label_tag }} {{ form.contact_phone }} {% for error in form.contact_phone.errors %}
{{ error }}
{% endfor %}
{{ form.contact_email.label_tag }} {{ form.contact_email }} {% for error in form.contact_email.errors %}
{{ error }}
{% endfor %}
{{ _("Inquiry Details")}}
{{ form.category.label_tag }} {{ form.category }} {% for error in form.category.errors %}
{{ error }}
{% endfor %}
{{ form.subject.label_tag }} {{ form.subject }} {% for error in form.subject.errors %}
{{ error }}
{% endfor %}
{{ form.message.label_tag }} {{ form.message }} {% for error in form.message.errors %}
{{ error }}
{% endfor %}
{{ _("Help")}}

{{ _("Use this form to create a new inquiry from a patient or visitor.")}}


{{ _("Fill in the inquiry details. Fields marked with * are required.")}}

{% if source_user %} {{ _("Cancel") }} {% else %} {{ _("Cancel") }} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}