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

{% trans 'Staff Appointment Information' %}

{% csrf_token %}
{{ form.services_offered.label_tag }} {{ form.services_offered.errors }} {{ form.services_offered }}
{{ form.slot_duration.label_tag }} {{ form.slot_duration }}
{{ form.lead_time.label_tag }} {{ form.lead_time }}
{{ form.finish_time.label_tag }} {{ form.finish_time }}
{{ form.appointment_buffer_time.label_tag }} {{ form.appointment_buffer_time }}
{{ 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 %}