- 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 %}