{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "New Observation Submitted - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "A new observation requires your review and triage" %}{% endblock %} {% block content %}

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

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

{% trans "Tracking Code:" %} {{ observation.tracking_code }}

{% if observation.title %}

{% trans "Title:" %} {{ observation.title }}

{% endif %}

{% trans "Category:" %} {% if observation.category %}{{ observation.category.name_en }}{% else %}N/A{% endif %}

{% trans "Status:" %} {{ observation.get_status_display }}

{% if observation.assigned_department %}

{% trans "Department:" %} {{ observation.assigned_department.name }}

{% endif %}

{% trans "This is an automated notification. Please log in to PX360 for full details." %}

{% endblock %}