{# 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_client.html" %} {% load i18n %} {% block title %}{{ client_page_title }}{% endblock %} {% block cabinet_content %}
{% for data in appointments_stats %}
{% include "cabinet/widgets/kpi.html" with data=data %}
{% endfor %}

{% trans "Upcoming Appointments" %}

{% trans "Mock demo data" %}
{% trans "Book Now" %}
{% include "cabinet/components/data_table.html" with table=upcoming_table %}

{% trans "History" %}

{{ history_total_count }} {% trans "records" %}
{% include "cabinet/components/data_table.html" with table=history_table %}
{% trans "Showing" %} {{ history_visible_count }} {% trans "of" %} {{ history_total_count }}
« 1 2 »
{% endblock %}