{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "New Suggestion Submitted - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "A new suggestion has been submitted for review" %}{% endblock %} {% block content %}

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

{% trans "A new suggestion has been submitted and is available for your review." %}

{% trans "Reference" %}: SG-{{ reference }}

{% trans "Title" %}: {{ title|default:"N/A" }}

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

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

{% trans "Submitted By" %}: {{ 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 this suggestion at your earliest convenience." %}

{% trans "View Suggestion" %}

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

{% endblock %}