{% extends "layout.html" %} {% block content %} {% for category, forums in categories.items() %} {% for forum, subforums in forums.items() %} {% endfor %}
{{ category[0].title }}
Forum Topics Posts Last Post
{% if forum[1]|is_unread(forum[0].last_post, forum[0]) %} {% else %} {% endif %} {{ forum[0].title }}
{% autoescape false %} {{ forum[0].description|markup }} {% endautoescape %}
{% if subforums|length %}
{% endif %}
{{ forum[0].topic_count }} {{ forum[0].post_count }} {% if forum[0].last_post_id %} {{ forum[0].last_post.topic.title|crop_title }}
{{ forum[0].last_post.date_created|time_since }}
by {{ forum[0].last_post.user.username }} {% else %} No posts {% endif %}
{% endfor %}
Board Statistics [Who is online?]
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 %}
Registered users online: {{ online_users }}
{% if config["USE_REDIS"] %}> Guests online: {{ online_guests }}
{% endif %}
{% endblock %}