{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "New Inquiry Submitted - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "A new inquiry requires your attention" %}{% endblock %} {% block content %}

{% trans "Dear" %} {{ recipient_name|default:'Team' }},

{% trans "A new inquiry has been submitted and requires your attention. Please review the details below." %}

{% trans "Reference" %}: {{ reference_number }}

{% trans "Subject" %}: {{ subject }}

{% trans "Category" %}: {{ category|default:"N/A" }}

{% trans "Priority" %}: {{ priority|default:"N/A" }}

{% trans "Contact" %}: {{ contact_name }}

{% trans "Hospital" %}: {{ hospital_name|default:"N/A" }}

{% trans "Department" %}: {{ department_name|default:"N/A" }}

{% if message %}

{% trans "Message" %}:

{{ message }}

{% endif %}

{% trans "Please review and respond to this inquiry at your earliest convenience." %}

{% trans "View Inquiry" %}

{% trans "Type:" %} {{ notification_type|default:"Working Hours" }}
{% trans "Time:" %} {{ current_time }}
{% trans "This is an automated notification from the PX 360 system." %}

{% endblock %}