{% extends "showcase/cabinet/booking/base_booking.html" %} {% block title %}Booking — New booking{% endblock %} {% block extra_css %} {% endblock %} {% block cabinet_content %}
{# ── Header ── #}
New booking
Complete the steps below
Back to schedule
{# ── Left column: steps 1-4 ── #}
{# STEP 1: Services #}
1
Select Services
{# Category tabs #}
{% for cat in categories %} {% endfor %}
{# Services grid #}
{% for svc in services %}
{{ svc.name }}
{{ svc.duration }} min {{ svc.price }}
{% endfor %}
{# STEP 2: Master #}
2
SPECIALIST
{% for s in staff_list %}
{{ s.initials }}
{{ s.name }}
{{ s.specialty }}
{% endfor %}
Any available specialist
{# STEP 3: Date & Time #}
3
DATE AND TIME
{# Mini calendar #}
March 2026
{% for d in weekdays %}
{{ d }}
{% endfor %}
{% for day in cal_days %}
{{ day.num }}
{% endfor %}
{# Time slots #}
Available time:
{% for slot in time_options %}
{{ slot.time }}
{% endfor %}
{# STEP 4: Client #}
4
Client
{# Search existing #}
{# Found clients (fake) #}
{% for c in recent_clients %}
{{ c.initials }}
{{ c.name }}
{{ c.phone }} · {{ c.visits }} visits
{% endfor %}
— or create new —
{# ── Right column: summary ── #}
Summary
{# Selected services list #}
Select Services
Duration
Total
{# Master #}
SPECIALIST
{# Date & Time #}
Date
Time
{% endblock %}