{% 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 }} |
| {% trans "Title:" %} {{ observation.title }} |
| {% trans "Category:" %} {% if observation.category %}{{ observation.category.name_en }}{% else %}N/A{% endif %} |
| {% trans "Status:" %} {{ observation.get_status_display }} |
| {% trans "Department:" %} {{ observation.assigned_department.name }} |
{% trans "This is an automated notification. Please log in to PX360 for full details." %}
{% endblock %}