{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "URGENT: SLA Reminder - Inquiry" %}{% endblock %} {% block preheader %}{% trans "An inquiry assigned to you is about to breach its SLA deadline." %}{% endblock %} {% block content %}

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

{% trans "URGENT: An inquiry assigned to you is about to breach its SLA deadline and requires your immediate attention." %}

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

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

{% trans "Due Date:" %} {{ inquiry.due_at|date:"F d, Y H:i" }}

{% trans "Time Remaining:" %} {{ hours_remaining }} {% trans "hours" %}

{% if inquiry_url %}
{% trans "View Inquiry" %}
{% endif %}

عاجل: تذكير اتفاقية مستوى الخدمة - استفسار {{ inquiry.reference_number }}

تاريخ الاستحقاق: {{ inquiry.due_at|date:"Y F d H:i" }} - الوقت المتبقي: {{ hours_remaining }} ساعة

{% endblock %}