{# CODEX_DJANGO_CLI BLUEPRINT STATUS: MOVE_TO_CLI_BLUEPRINT. Reason: generated app-layer or scaffold-owned template for codex-django-cli blueprints. #} {% extends "cabinet/base_cabinet.html" %} {% load i18n %} {% block cabinet_content %}

{{ title }}

{% if builder_mode == "series" %} {% trans "Plan a course of repeat appointments for one client across multiple dates." %} {% else %} {% trans "Create a new appointment by selecting services and time." %} {% endif %}

{% for tab in builder_tabs %} {{ tab.label }} {% endfor %}
{% if builder_mode == "series" %} {% include "cabinet/booking/builders/series_plan.html" %} {% elif builder_mode == "separate" %} {% include "cabinet/booking/builders/separate_booking.html" %} {% else %} {% include "cabinet/booking/builders/single_session.html" %} {% endif %}
{% endblock %}