{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block title %} {{ page_title }} {% endblock %} {% block description %} {{ page_description }} {% endblock %} {% block body %}

{{ page_title }}

{{ page_description }}

{% trans 'Schedule' %}

{% trans 'Date' %} {{ appointment.get_date }}
{% trans 'Start time' %} {{ appointment.get_start_time|time:"g:i A" }}
{% trans 'End time' %} {{ appointment.get_end_time|time:"g:i A" }}

{% trans 'Service' %}

{% trans 'Service' %} {{ appointment.get_service_name }}

{% trans 'Client Details' %}

{% trans 'Client' %} {{ appointment.get_client_name }}
{% trans 'Email' %} {{ appointment.client.email }}
{% trans 'Phone' %} {{ appointment.phone }}
{% trans 'Client address' %} {{ appointment.address }}

{% trans 'Notes' %}

{% trans 'Wants reminder' %} {{ appointment.wants_reminder_text }}
{% if appointment.additional_info %}
{% trans 'Additional Information' %} {{ appointment.additional_info }}
{% endif %}
{% if appointment.is_paid %} {% else %} {% endif %}
{% if appointment.is_paid %} {% trans 'Payment Complete' %} {% else %} {% trans 'Payment Pending' %} {% endif %}
{{ appointment.get_appointment_amount_to_pay_text }}

{% if appointment.is_paid %} {% trans 'Paid in full' %} {% else %} {% trans 'Amount due' %} {% endif %}

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% endblock %} {% block customJS %} {% endblock %}