{% extends "showcase/cabinet/base_cabinet.html" %} {% block title %}Clients{% endblock %} {% block sidebar_title %} Clients {% endblock %} {% block sidebar_nav %} {% for seg in segments %}
  • {{ seg.label }} {{ seg.count }}
  • {% if seg.key == 'all' %}

  • {% endif %} {% if seg.key == 'vip' %}

  • {% endif %} {% endfor %} {% endblock %} {% block cabinet_content %}
    {# ── Toolbar ── #}
    {# Search #}
    {# Found counter #} Found: {{ total }} {# View toggle #}
    {# Add client #}
    {# ── Grid view ── #}
    {% for client in clients %}
    {# Header: initials + name + pencil #}
    {{ client.initials }}
    {{ client.name }}
    {{ client.status_meta.label }}
    {# Contacts #}
    {% if client.phone %}
    {{ client.phone }}
    {% endif %} {% if client.email %}
    {{ client.email }}
    {% endif %}
    {# Last visit #}
    {{ client.last_visit }}
    {% empty %}
    {% include "showcase/cabinet/includes/_empty_state.html" with icon="bi-people" title="No clients found" subtitle="Try changing the filter or search query" %}
    {% endfor %}
    {# ── Table view ── #}
    {% for client in clients %} {% empty %} {% endfor %}
    NAME STATUS Phone EMAIL Last Visit
    {{ client.initials }} {{ client.name }}
    {{ client.status_meta.label }} {{ client.phone|default:"—" }} {{ client.email|default:"—" }} {{ client.last_visit }}
    {% include "showcase/cabinet/includes/_empty_state.html" with icon="bi-people" title="No clients found" subtitle="Try changing the filter or search query" %}
    {% endblock %}