{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Create New Inquiry" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Create New Inquiry" %}

{% trans "Create a new patient inquiry or request" %}

{% csrf_token %}

{% trans "Inquiry Information" %}

{% trans "Organization" %}

{{ form.hospital }} {% if form.hospital.help_text %}

{{ form.hospital.help_text }}

{% endif %} {% for error in form.hospital.errors %}

{{ error }}

{% endfor %}
{{ form.department }} {% for error in form.department.errors %}

{{ error }}

{% endfor %}

{% trans "Contact Information" %}

{{ form.contact_name }} {% for error in form.contact_name.errors %}

{{ error }}

{% endfor %}
{{ form.contact_phone }} {% for error in form.contact_phone.errors %}

{{ error }}

{% endfor %}
{{ form.contact_email }} {% for error in form.contact_email.errors %}

{{ error }}

{% endfor %}

{% trans "Inquiry Details" %}

{{ form.category }} {% for error in form.category.errors %}

{{ error }}

{% endfor %}
{{ form.priority }} {% if form.priority.help_text %}

{{ form.priority.help_text }}

{% endif %} {% for error in form.priority.errors %}

{{ error }}

{% endfor %}
{{ form.subject }} {% for error in form.subject.errors %}

{{ error }}

{% endfor %}
{{ form.message }} {% for error in form.message.errors %}

{{ error }}

{% endfor %}
{% trans "Cancel" %}
{% endblock %}