{% extends "base.html" %} {% from "macros.html" import icon, btn, badge %} {% block title %}{{ t('Dashboard') }}{% endblock %} {% block content %}
{# ── Colonne principale : graphiques + activité ── #}
{% if chart_info %}
{{ icon('chart', 15) }} {{ t('Activity Trend') }}
{{ icon('table', 15) }} {{ t('Data Distribution') }}
{% endif %}
{{ icon('table', 15) }} {{ t('Overview') }}
{% if stats_groups %} {% for grp in stats_groups %}
{{ grp.name }}
{% for s in grp.stats %} {{ s.label }} {{ s.count }} {% endfor %}
{% endfor %} {% elif stats %} {% for s in stats %} {{ s.label }} {{ s.count }} {% endfor %} {% else %}
{{ t('No models in overview') }}
{% endif %}
{# ── Activité Récente (après Aperçu dans le HTML → ordre pile : charts, aperçu, activité) ── #} {% if can_view_logs %}
{{ icon('history', 15) }} {{ t('Recent Activity') }} {{ t('See all activity') }}
{% if recent_logs %} {% for log in recent_logs %}
{{ log.user_label }} {{ log.action }} {{ log.entity }} {% if log.entity_id %}#{{ log.entity_id }}{% endif %}
{{ log.date_label }}
{% endfor %} {% else %}
{{ icon('log', 36, 'empty-icon') }}

{{ t('No activity yet') }}

{{ t('System logs will appear here.') }}

{% endif %}
{% endif %}
{% if widgets %}
{{ widgets }}
{% endif %} {% endblock %}