diff --git a/app/dashboard/templates/dashboard/index.html b/app/dashboard/templates/dashboard/index.html
index 8a167b38..b1dcb993 100644
--- a/app/dashboard/templates/dashboard/index.html
+++ b/app/dashboard/templates/dashboard/index.html
@@ -25,41 +25,41 @@
{% block default_content %}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
{{ stats.nb_alias }}
#}
-{#
Aliases
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
{{ stats.nb_forward }}
#}
-{#
Forwards
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
{{ stats.nb_reply }}
#}
-{#
Replies
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
#}
-{#
{{ stats.nb_block }}
#}
-{#
Blocks
#}
-{#
#}
-{#
#}
-{#
#}
-{##}
-{#
#}
+
+
+
+
+
{{ stats.nb_alias }}
+
Aliases
+
+
+
+
+
+
+
{{ stats.nb_forward }}
+
Forwards
+
+
+
+
+
+
+
{{ stats.nb_reply }}
+
Replies
+
+
+
+
+
+
+
{{ stats.nb_block }}
+
Blocks
+
+
+
+
+
diff --git a/app/dashboard/views/index.py b/app/dashboard/views/index.py
index 68c9ac78..df538948 100644
--- a/app/dashboard/views/index.py
+++ b/app/dashboard/views/index.py
@@ -148,7 +148,7 @@ def index():
current_user.intro_shown = True
db.session.commit()
- # stats = get_stats(current_user)
+ stats = get_stats(current_user)
alias_infos = get_alias_infos_with_pagination_v3(
current_user, page, query, sort, alias_filter
@@ -167,5 +167,5 @@ def index():
last_page=last_page,
sort=sort,
filter=alias_filter,
- # stats=stats,
+ stats=stats,
)