{% load i18n %} {% translate 'Appointment Reminder' %}

{% translate 'Appointment Reminder' %}

{% if recipient_type == 'client' %} {% translate 'Dear' %} {{ first_name }}, {% else %} {% translate 'Dear Administrator,' %} {% endif %}

{% translate 'This is a reminder for your upcoming appointment.' %}

{% translate 'Appointment Details' %}

{% translate 'Service' %} {{ appointment.get_service_name }}
{% translate 'Date' %} {{ appointment.appointment_request.date }}
{% translate 'Time' %} {{ appointment.appointment_request.start_time }} - {{ appointment.appointment_request.end_time }}
{% translate 'Location' %} {{ appointment.address }}
{% if recipient_type == 'client' %}

{% translate 'If you need to reschedule, please click the button below or contact us for further assistance.' %}

{% translate 'Reschedule Appointment' %}

{% translate 'Thank you for choosing us!' %}

{% else %}

{% translate 'Please ensure the appointment setup is complete and ready for the client.' %}

{% endif %}