diff --git a/templates/home/index.twig b/templates/home/index.twig index c8d6b8ae..3799cc0a 100644 --- a/templates/home/index.twig +++ b/templates/home/index.twig @@ -10,9 +10,13 @@
Statistics
- We have {{ users_count|number_format }} users and - the last person to join was {{ last_user.username }}, - ! + {% if users_count < 1 %} + This is a fresh installation, create an account! + {% else %} + We have {{ users_count|number_format }} users and + the last person to join was {{ last_user.username }}, + ! + {% endif %}