{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "Monthly Follow-Up Due - Observation" %}{% endblock %} {% block preheader %}{% trans "A resolved observation requires monthly follow-up review." %}{% endblock %} {% block content %}

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

{% trans "An observation previously resolved by your team is due for its monthly follow-up review. Please verify that the issue has been fully addressed and sustained." %}

{% 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 %} {% if observation.resolved_at %}

{% trans "Resolved On:" %} {{ observation.resolved_at|date:"F d, Y" }}

{% endif %} {% if observation.resolution_notes %}

{% trans "Previous Resolution Notes:" %}

{{ observation.resolution_notes|truncatechars:500 }}

{% endif %}

- {% trans "Verify that the corrective actions are still effective" %}

- {% trans "Confirm the issue has not recurred" %}

- {% trans "Update the observation with follow-up notes" %}

{% if observation_url %}
{% trans "Review Observation" %}
{% endif %}

متابعة شهرية مطلوبة - {{ observation.tracking_code }}

ملاحظة سابقة الحل تحتاج إلى مراجعة المتابعة الشهرية. يرجى التحقق من استمرار فعالية الإجراءات التصحيحية.

{% endblock %}