{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block title %} {{ page_title }} {% endblock %} {% block description %} {{ page_description }} {% endblock %} {% block body %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% translate "Confirm Deletion" as modal_title %} {% translate "Delete" as delete_btn_modal %}

{% trans 'Personal Information' %}

{% trans 'First name' %}: {{ user.first_name }}

{% trans 'Last name' %}: {{ user.last_name }}

{% trans 'Email' %}: {{ user.email }}

{% trans 'Appointment Information' %}

{{ service_msg }} {% if staff_member %}

{% trans 'Slot duration' %}: {{ staff_member.get_slot_duration_str }}

{% trans 'General start time' %}: {{ staff_member.get_lead_time }}

{% trans 'General end time' %}: {{ staff_member.get_finish_time }}

{% trans 'Weekend days you work' %}: {{ staff_member.get_weekend_days_worked_str }}

{% trans 'Appointment buffer time' %}: {{ staff_member.get_appointment_buffer_time_str }}

{% else %}

{% trans 'No staff member information yet for this user' %}.

{% endif %}

{% trans 'Days Off' %}

{% trans "Days off are days you're not working, you need to set them for holidays as well so clients don't book you those days." %}
{% for day_off in days_off %} {% empty %} {% endfor %}
{% trans 'Start date' %} {% trans 'End date' %} {% trans 'Description' %} {% trans 'Action' %}
{{ day_off.start_date }} {{ day_off.end_date }} {{ day_off.description }}
{% if superuser %} {% else %} {% endif %} {% translate "Are you sure you want to delete this working hours?" as d_modal_message %} {% if superuser %} {% else %} {% endif %}
{% trans 'No days off have been set' %}.

{% trans 'Working Hours' %}

{% trans "Note: If you are a staff member, your working hours will be used to determine when you are available for appointments." %}
{% for working_hour in working_hours %} {% empty %} {% endfor %}
{% trans 'Day' %} {% trans 'Start time' %} {% trans 'End time' %} {% trans 'Action' %}
{{ working_hour.get_day_of_week_str }} {{ working_hour.start_time|time:"g:i A" }} {{ working_hour.end_time|time:"g:i A" }}
{% if superuser %} {% else %} {% endif %} {% translate "Are you sure you want to delete this working hours?" as w_modal_message %} {% if superuser %} {% else %} {% endif %}
{% trans 'No working hours have been set' %}.

{% trans 'Service Offered' %}

{% if not superuser %} {% trans "To add/modify a new service, make a request to an admin." %} {% trans "Changes made in one service will change it for every staff member." %} {% endif %}
{% for service in services_offered %} {% empty %} {% endfor %}
{% trans 'Name' %} {% trans 'Description' %} {% trans 'Duration' %} {% trans 'Price' %} {% trans 'Down payment' %}
{{ service.name }} {{ service.description }} {{ service.get_duration }} {{ service.get_price_text }} {{ service.get_down_payment_str }}
{% trans 'No service offered yet' %}.
{% include 'modal/confirm_modal.html' %}
{% endblock %} {% block customJS %} {% endblock %}