{% load i18n %}
{% translate 'Dear' %} {{ recipient_name }},
{% if is_staff_member %}{% translate 'You have received a new appointment request. Here are the details:' %}
{% else %}{% translate 'A new appointment request has been received for' %} {{ staff_member_name }}. {% translate 'Here are the details:' %}
{% endif %}{% translate 'Client Name' %}: {{ client_name }}
{% translate 'Service Requested' %}: {{ appointment.get_service_name }}
{% translate 'Appointment Date' %}: {{ appointment.appointment_request.date }}
{% translate 'Time' %}: {{ appointment.appointment_request.start_time }} - {{ appointment.appointment_request.end_time }}
{% translate 'Contact Details' %}: {{ appointment.phone }} | {{ appointment.client.email }}
{% translate 'Additional Info' %}: {{ appointment.additional_info|default:"N/A" }}
{% translate 'Please review the appointment request and take the necessary action.' %}
{% else %}{% translate 'Please ensure that' %} {{ staff_member_name }} {% translate 'reviews this appointment request and takes the necessary action.' %}
{% endif %}