diff --git a/templates/home/stats_dashboard.html b/templates/home/stats_dashboard.html
new file mode 100644
index 0000000..e5daaed
--- /dev/null
+++ b/templates/home/stats_dashboard.html
@@ -0,0 +1,135 @@
+{% extends "layout.html" %}
+{% load static %}
+
+{% block title %}- Tableau de bord{% endblock %}
+
+{% block extra_head %}
+
+
+{% endblock %}
+
+{% block content %}
+
+
Tableau de bord statistiques
+
+
+
+
+
+
Utilisateurs (total)
+
{{ kpi.total_users }}
+
+
+
Nouveaux utilisateurs (période)
+
{{ kpi.new_users_period }}
+
+
+
Utilisateurs actifs (période)
+
{{ kpi.active_users_period }}
+
+
+
Cours (publiés / total)
+
{{ kpi.courses_enabled }} / {{ kpi.total_courses }}
+
+
+
Leçons (total)
+
{{ kpi.total_lessons }}
+
+
+
Articles de blog (total)
+
{{ kpi.total_posts }}
+
+
+
Revenus
+ {% if revenus_disponibles %}
+
—
+ {% else %}
+
N/A
+ {% endif %}
+
+
+
Technique
+ {% if technique_disponible %}
+
—
+ {% else %}
+
N/A
+ {% endif %}
+
+
+
+
+
+
Évolution quotidienne
+
+
+
+
+
+
+
Nouveaux utilisateurs par jour
+
+ | Jour | Nb |
+
+ {% for row in new_users_table %}
+ | {{ row.0 }} | {{ row.1 }} |
+ {% endfor %}
+
+
+
+
+
Nouveaux cours par jour
+
+ | Jour | Nb |
+
+ {% for row in new_courses_table %}
+ | {{ row.0 }} | {{ row.1 }} |
+ {% endfor %}
+
+
+
+
+
+
+
+{% endblock %}