{% extends "layout.html" %} {% block content %} {% for category in categories.iteritems() %} {% for forum in category[1] %} {% endfor %}
{{ category[0].title }}
Forum Topics Posts Last Post
{% if forum[0]|forum_is_unread(forum[1], current_user) %} {% else %} {% endif %} {{ forum[0].title }}
{% autoescape false %} {{ forum[0].description|markup }} {% endautoescape %}
{{ 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 }}
{% if forum[0].last_post.user_id %} by {{ forum[0].last_post.user.username }} {% else %} {{ forum[0].last_post.username }} {% endif %} {% 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["REDIS_ENABLED"] %} Guests online: {{ online_guests }}
{% endif %}
{% endblock %}