{% extends "base.html" %} {% block content %} {% if empty %}

{{ t("onboarding.no_projects_title") }}

{{ t("onboarding.no_projects_body") }}

{{ t("nav.new_project") }}
{% else %}
{# ── Page header ───────────────────────────────────────────────── #}

{{ project.name }}

{% if project.description %}

{{ project.description }}

{% endif %}
{# ── Stats cards ───────────────────────────────────────────────── #} {% include "components/stats_cards.html" %} {# ── Charts row ────────────────────────────────────────────────── #}
{# Status distribution — doughnut #}

{{ t("home.status_distribution") }}

{# Kind distribution — horizontal bar #}

{{ t("home.kind_distribution") }}

{# ── Recent activity ───────────────────────────────────────────── #}

{{ t("home.recent_activity") }}

{% if recent_items %} {% else %}

{{ t("onboarding.no_items_title") }}

{{ t("onboarding.no_items_body") }}

{{ t("form.create_item") }}
{% endif %}
{# ── Chart.js initialization ─────────────────────────────────────── #} {% endif %} {% endblock %}