{% extends "_base.html" %} {% load static %} {% block styles %} {{ block.super }} {% endblock styles %} {% block ui_active_tab %} 'appointment_types' {% endblock ui_active_tab %} {% block page_header %} {% if worker_type == 'STAFF' %} Workers {% elif worker_type == 'HEALTH_PARTNER' %} Health Partners {% elif worker_type == 'VOUCHER_PARTNER' %} Voucher Partners {% endif %} {% endblock page_header %} {% block breadcrumb %} {% include "appointment_types/breadcrumb.html" %} {% endblock breadcrumb %} {% block maincontent %}
Add new appointment type

Appointment Types represent the different assesments (i.e. blood test) to be conducted during an appointment.

{% for appointment_type in appointment_types %} {% endfor %}
Required Equipment Code Description Default Duration Rest Time Edit Delete
{{ appointment_type.required_equipment.all|join:"; " }} {{ appointment_type.code }} {{ appointment_type.description }} {{ appointment_type.default_duration }} {{ appointment_type.rest_time }}
{% endblock maincontent %} {% block scripts %} {{ block.super }} {% endblock scripts %}