{% extends 'home/master.twig' %} {% from 'macros.twig' import container_title %} {% from 'news/macros.twig' import news_preview %} {% from 'changelog/macros.twig' import changelog_listing %} {% set canonical_url = '/' %} {% block content %}
{{ container_title(' Statistics') }}
Users
{{ statistics.users.all|number_format }}
Comments
{{ statistics.comments|number_format }}
Online
{{ statistics.users.online|number_format }}
Active (24 hr)
{{ statistics.users.active|number_format }}
Topics
{{ statistics.forum_topics|number_format }}
Posts
{{ statistics.forum_posts|number_format }}
{% if online_users|length > 0 %}
{{ container_title(' Online Users') }}
{% for user in online_users %} {{ user.username }} {% endfor %}
{% endif %} {% if birthdays|length > 0 %}
{{ container_title(' Happy Birthday!') }} {% for birthday in birthdays %}
{{ birthday.username }}
{% if birthday.user_age is not null %}
Turned {{ birthday.user_age }} today!
{% endif %}
{% endfor %}
{% elseif latest_user.user_id|default(0) > 0 %} {% endif %}
{{ container_title(' Changelog', false, url('changelog-index')) }}
{{ changelog_listing(featured_changelog, false, false, null, null, null, null, true) }}
{% for post in featured_news %} {{ news_preview(post) }} {% endfor %}
{% if linked_data is defined and linked_data is iterable %} {% endif %} {% endblock %}