{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "Department Request - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "Your department has been assigned to respond to a patient complaint" %}{% endblock %} {% block content %}

{% trans "Dear" %} {{ staff_name }},

{% trans "Your department has been assigned to respond to the following patient complaint. Please review the details and submit your department's response using the button below." %}

{% if custom_message %}

{% trans "Note from PX Team:" %} {{ custom_message }}

{% endif %}

{% trans "Reference:" %} #{{ complaint_id }}

{% trans "Title:" %} {{ complaint_title }}

{% trans "Patient:" %} {{ patient_name }}

{% trans "Department:" %} {{ department_name }}

{% trans "Deadline:" %} {{ created_date }}

{% if description %}

{% trans "Description:" %} {{ description }}

{% endif %}
{% trans "Submit Department Response" %}

{% trans "If you have any questions, please contact the PX team." %}
{% trans "This is an automated email. Please do not reply." %}

{% endblock %}