{% extends 'base.html.twig' %} {% block title %}Dashboard - Bubul{% endblock %} {% block meta_description %}Tableau de bord Bubul : statistiques, accès rapides aux outils IA et gestion de vos contenus pédagogiques.{% endblock %} {% block body %}
{# Header #}

Bonjour {{ user.firstName }} 👋

Bienvenue sur votre tableau de bord ! Retrouvez vos statistiques et accédez à tous vos outils IA. Merci d'être participant à notre bêta.

{% include '_components/stateMoodle.html.twig' with {'moodleStatus': moodleStatus} %}
{# Statistics Cards #}

Tokens restants

{{ stats.tokens_remaining|number_format(0, ',', ' ') }}

{% if stats.tokens_total > 0 %}

{{ ((stats.tokens_total - stats.tokens_remaining) / stats.tokens_total * 100)|round }}% utilisés

{% else %}

Aucun quota défini

{% endif %}

Cours créés

{{ stats.courses_created }}

Déployés sur Moodle

Activités générées

{{ stats.activities_generated }}

Quiz, devoirs, forums...

Temps économisé

{{ stats.time_saved_hours }}h

Économisé avec Moodia

{# Quick Actions #}

Accès rapides

{% for action in quickActions %} {% if action.disabled|default(false) %}
{% include '_components/icons/' ~ action.icon ~ '.html.twig' %}
À venir

{{ action.title }}

{{ action.description }}

{% else %}
{% include '_components/icons/' ~ action.icon ~ '.html.twig' %}

{{ action.title }}

{{ action.description }}

{% endif %} {% endfor %}
{# Getting Started #}

Guide de démarrage

Nouveau
{# Étape 1 : Créer un cours sur Moodle #}
{% if gettingStarted.step1Completed %} {% else %} 1 {% endif %}

Créer un cours sur Moodle

{% if gettingStarted.step1Completed %}

Premier cours créé avec succès !

{% else %}

Uploadez un PDF et générez un cours complet

Créer un cours → {% endif %}
{# Étape 2 : Créer une présentation #}
{% if gettingStarted.step2Completed %} {% else %} 2 {% endif %}

Créer une présentation

{% if gettingStarted.step2Completed %}

Première présentation créée !

{% else %}

Générez un PowerPoint avec Slidia

Créer une présentation → {% endif %}
{# Étape 3 : Discuter avec Serenia 10 fois #}
{% if gettingStarted.step3Completed %} {% else %} 3 {% endif %}

Discuter avec Serenia

{% if gettingStarted.step3Completed %}

10 conversations complétées !

{% else %}

{{ gettingStarted.sereniaCount }}/{{ gettingStarted.sereniaTarget }} conversations

Discuter maintenant → {% endif %}
{# Recent Activity #}

Activité récente

{% if recentActivity|length > 0 %}
{% for activity in recentActivity %}
{% if activity.type|lower == 'moodia' %} {% include '_components/icons/moodia.html.twig' %} {% elseif activity.type|lower == 'slidia' %} {% include '_components/icons/slidia.html.twig' %} {% elseif activity.type|lower == 'serenia' %} {% include '_components/icons/seren_ia.html.twig' %} {% else %} {% include '_components/icons/moodia.html.twig' %} {% endif %}

{{ activity.title }}

{{ activity.tokens }} {% include "_components/icons/battery.html.twig" %} {{ activity.energy|number_format(4) }} Wh · {{ activity.date|date('d M Y', 'Europe/Paris') }}

{{ activity.type }}
{% endfor %}
{% else %}

Aucune activité récente

Créez votre premier cours pour commencer

{% endif %}
{% endblock %}