{% trans 'First name' %}: {{ user.first_name }}
{% trans 'Last name' %}: {{ user.last_name }}
{% trans 'Email' %}: {{ user.email }}
{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block title %} {{ page_title }} {% endblock %} {% block description %} {{ page_description }} {% endblock %} {% block content %}
{% trans 'Slot duration' %}: {{ staff_member.get_slot_duration_text }}
{% 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_text }}
{% trans 'Appointment buffer time' %}: {{ staff_member.get_appointment_buffer_time_text }}
{% trans 'No staff member information yet for this user' %}.
| {% trans 'Start date' %} | {% trans 'End date' %} | {% trans 'Description' %} | {% trans 'Action' %} |
|---|---|---|---|
| {{ day_off.start_date }} | {{ day_off.end_date }} | {{ day_off.description }} | |
| {% trans 'No days off have been set' %}. | |||
| {% 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" }} | |
| {% trans 'No working hours have been set' %}. | |||
| {% trans 'Name' %} | {% trans 'Description' %} | {% trans 'Duration' %} | {% trans 'Price' %} | {% trans 'Down payment' %} |
|---|---|---|---|---|
| {{ service.name }} | {{ service.description|default:"N/A" }} | {{ service.get_duration }} | {{ service.get_price_text }} | {{ service.get_down_payment_text }} |
| {% trans 'No service offered yet' %}. | ||||