{% extends BASE_TEMPLATE %} {% load i18n %} {% load static %} {% block customCSS %} {% endblock %} {% block body %}

{% trans 'Staff Appointment Information' %}

{% csrf_token %} {% if form.user %}
{{ form.user.label_tag }} {{ form.user.errors }} {{ form.user }}
{% translate 'User not found' %} ? {% translate 'Create staff member manually' %}
{% endif %}
{{ form.services_offered.label_tag }} {{ form.services_offered.errors }} {{ form.services_offered }}
{% trans 'Hold down “Control”, or “Command” on a Mac, to select more than one.' %}
{{ form.slot_duration.label_tag }} {{ form.slot_duration }} {{ form.slot_duration.help_text }}
{{ form.lead_time.label_tag }} {{ form.lead_time }} {{ form.lead_time.help_text }}
{{ form.finish_time.label_tag }} {{ form.finish_time }} {{ form.finish_time.help_text }}
{{ form.appointment_buffer_time.label_tag }} {{ form.appointment_buffer_time }} {{ form.appointment_buffer_time.help_text }}
{{ form.work_on_saturday }} {{ form.work_on_saturday.label_tag }}
{{ form.work_on_sunday }} {{ form.work_on_sunday.label_tag }}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}