{% extends "layout.html" %} {% block content %} {% for category, forums in categories.items() %} {% for forum, subforums in forums.items() %} {% endfor %}
{{ category.title }}
Forum Topics Posts Last Post
{# {% if forum.is_unread(current_user) %} New posts {% else %} No new posts {% endif %} #} {{ forum.title }}
{% autoescape false %} {{ forum.description|markup }} {% endautoescape %}
{% if subforums|length %}
{% endif %}
{{ forum.topic_count }} {{ forum.post_count }} {% if forum.last_post_id %} {{ forum.last_post.topic.title|crop_title }}
{{ forum.last_post.date_created|time_since }}
by {{ forum.last_post.user.username }} {% else %} No posts {% endif %}
{% endfor %}
Board Statistics {% if config["USE_REDIS"] %} [Who is online?] {% endif %}
Total number of registered users: {{ user_count }}
Total number of topics: {{ topic_count }}
Total number of posts: {{ post_count }}
Newest registered user: {% if newest_user %}{{ newest_user.username }}{% else %}No users{% endif %}
{% if config["USE_REDIS"] %} Registered users online: {{ online_users }}
Guests online: {{ online_guests }}
{% endif %}
{% endblock %}