{% load i18n %}
{% if recipient_type == 'client' %} {% translate 'Dear' %} {{ first_name }}, {% else %} {% translate 'Dear Administrator,' %} {% endif %}
{% translate 'This is a reminder for your upcoming appointment.' %}
{% 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 %}