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

{% trans "Complaint Created Successfully!" %}

{% trans "The complaint has been logged and will be processed according to SLA guidelines." %}

{% trans "Complaint Details" %}
{% trans "Complaint ID:" %} #{{ complaint.id|slice:":8" }}
{% trans "Title:" %} {{ complaint.title }}
{% trans "Patient:" %} {% if complaint.patient %} {{ complaint.patient.get_full_name }} (MRN: {{ complaint.patient.mrn }}) {% else %} {% trans "N/A" %} {% endif %}
{% trans "Hospital:" %} {{ complaint.hospital.name_en }}
{% trans "Category:" %} {{ complaint.get_category_display }}
{% trans "Severity:" %} {{ complaint.get_severity_display }}
{% trans "Priority:" %} {{ complaint.get_priority_display }}
{% trans "SLA Deadline:" %} {{ complaint.due_at|date:"Y-m-d H:i" }}
{% trans "Created:" %} {{ complaint.created_at|date:"Y-m-d H:i" }}
{% trans "Next Steps" %}
  • {% trans "The complaint has been automatically assigned based on hospital rules" %}
  • {% trans "A call center interaction record has been created" %}
  • {% trans "The responsible team will be notified" %}
  • {% trans "You can track the complaint status in the complaints list" %}
{% endblock %}