{% extends "layouts/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Inquiry Created" %} - {% trans "Call Center" %} - PX360{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Inquiry Created Successfully!" %}

{% trans "The inquiry has been logged and will be responded to as soon as possible." %}

{% trans "Inquiry Details" %}
{% trans "Inquiry ID:" %} #{{ inquiry.id|slice:":8" }}
{% trans "Subject:" %} {{ inquiry.subject }}
{% trans "Contact:" %} {% if inquiry.patient %} {{ inquiry.patient.get_full_name }} (MRN: {{ inquiry.patient.mrn }}) {% else %} {{ inquiry.contact_name }} {% endif %}
{% trans "Phone:" %} {% if inquiry.patient %} {{ inquiry.patient.phone }} {% else %} {{ inquiry.contact_phone }} {% endif %}
{% if inquiry.contact_email %}
{% trans "Email:" %} {{ inquiry.contact_email }}
{% endif %}
{% trans "Hospital:" %} {{ inquiry.hospital.name_en }}
{% if inquiry.department %}
{% trans "Department:" %} {{ inquiry.department.name_en }}
{% endif %}
{% trans "Category:" %} {{ inquiry.get_category_display }}
{% trans "Status:" %} {{ inquiry.get_status_display }}
{% trans "Created:" %} {{ inquiry.created_at|date:"Y-m-d H:i" }}
{% trans "Next Steps" %}
  • {% trans "The inquiry has been logged in the system" %}
  • {% trans "A call center interaction record has been created" %}
  • {% trans "The appropriate department will be notified" %}
  • {% trans "The caller will be contacted once a response is available" %}
  • {% trans "You can track the inquiry status in the inquiries list" %}
{% endblock %}