{% load i18n %} {% extends 'emails/base_email_template.html' %} {% block title %}{% trans "Appointment Confirmation - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "Your appointment has been confirmed. Please review the details." %}{% endblock %} {% block hero_title %}{% trans "Appointment Confirmed" %}{% endblock %} {% block hero_subtitle %}{% trans "Your healthcare appointment at Al Hammadi Hospital has been successfully scheduled" %}{% endblock %} {% block content %}

{% trans "Dear" %} {{ patient_name|default:_("Valued Patient") }},

{% trans "Your appointment has been confirmed. Please find the details below and save this email for your records." %}

{% trans "Appointment Details" %}

{% trans "Patient Name:" %} {{ patient_name|default:_("N/A") }}
{% trans "Appointment ID:" %} {{ appointment_id|default:_("N/A") }}
{% trans "Date:" %} {{ appointment_date|default:_("N/A") }}
{% trans "Time:" %} {{ appointment_time|default:_("N/A") }}
{% trans "Department:" %} {{ department|default:_("N/A") }}
{% trans "Doctor:" %} {{ doctor_name|default:_("N/A") }}
{% trans "Location:" %} {{ location|default:_("Al Hammadi Hospital") }}

{% trans "Important Reminders:" %}

📋

{% trans "Arrive Early:" %} {% trans "Please arrive 15 minutes before your appointment time for registration" %}

📄

{% trans "Bring Documents:" %} {% trans "Please bring your ID and any relevant medical records" %}

{% trans "Need to Reschedule?" %} {% trans "Contact us at least 24 hours in advance" %}

{% endblock %} {% block cta_url %}{{ reschedule_link|default:'#' }}{% endblock %} {% block cta_text %}{% trans "Reschedule or Cancel" %}{% endblock %} {% block info_title %}{% trans "Contact Information" %}{% endblock %} {% block info_content %} {% trans "Phone:" %} {{ hospital_phone|default:"+966 XXX XXX XXXX" }}
{% trans "Email:" %} {{ hospital_email|default:"appointments@alhammadihospital.com" }}
{% trans "Emergency:" %} {% trans "For emergencies, please call 997 or visit our ER immediately" %} {% endblock %} {% block footer_address %} {% trans "Patient Experience Management Department" %}
{% trans "Al Hammadi Hospital" %} {% endblock %}