{% load i18n %} {% trans "Appointment Reschedule Confirmation" %}

{% trans "Appointment Reschedule" %}

{% if is_confirmation %}

{% trans "Dear" %} {{ first_name }},

{% else %}

{% trans "Hi" %},

{% endif %} {% if is_confirmation %}

{% trans "You have requested to reschedule your appointment. Please review the changes below and confirm:" %}

{% else %}

{% trans "An appointment with" %} {{ client_name }} {% trans "for the service" %} {{ service_name }} {% trans "has been rescheduled." %} {% if reason_for_rescheduling %}
{% trans "Reason for rescheduling:" %} {{ reason_for_rescheduling }}{% endif %}

{% endif %}

{% trans "Original Appointment:" %}
{% trans "Date" %}: {{ old_date }}
{% trans "Time" %}: {{ old_start_time }} {% trans ' to ' %} {{ old_end_time }}

{% trans "Rescheduled Appointment:" %}
{% trans "Date" %}: {{ reschedule_date }}
{% trans "Time" %}: {{ start_time }} {% trans ' to ' %} {{ end_time }}

{% if is_confirmation %}

{% trans "This link will expire in 5 minutes. If you do not confirm within this time frame, you will need to submit a new reschedule request." %}

{% trans "Confirm Appointment" %} {% endif %}