{% extends "showcase/cabinet/booking/base_booking.html" %} {% block title %}Booking — {{ page_title }}{% endblock %} {% block extra_css %} {% endblock %} {% block cabinet_content %}
{# ── Header ── #} {% include "showcase/cabinet/includes/_page_header.html" with title="Appointments" subtitle="All bookings log" btn_label="+ New booking" btn_url="codex_showcase:booking_new" btn_icon="bi-plus-lg" %} {# ── Status filter tabs ── #}
{% for tab in status_tabs %} {{ tab.label }} ({{ tab.count }}) {% endfor %}
{# ── Table ── #}
{% for appt in appointments %} {% empty %} {% endfor %}
Client SERVICE SPECIALIST Date / Time Price STATUS
{{ appt.initials }}
{{ appt.client }}
{{ appt.phone }}
{{ appt.service }}
{{ appt.duration }} min
{{ appt.staff_initials }}
{{ appt.staff_name }}
23 March 2026
{{ appt.start_label }} — {{ appt.end_label }}
{{ appt.price }} {{ appt.status_label }}
{% include "showcase/cabinet/includes/_empty_state.html" with icon="bi-calendar-x" title="No records" subtitle="No records found for the selected filters" %}
{# ── Action Modal ── #}
{% endblock %} {% block extra_js %} {% endblock %}