{% extends "sora/layout.html" %} {% load i18n %} {% load url from future %} {% import "sora/macros.html" as macros with context %} {% block title %}{% if settings.board_index_title %}{{ settings.board_index_title }}{% else %}{{ settings.board_name }}{% endif %}{% endblock %} {% block meta %}{% if settings.board_index_meta %} {% endif %}{% endblock %} {% block content %}
{% for category in forums_list %}{% if category.subforums %}

{{ category.name }}{% if category.description %} {{ category.description }}{% endif %}

{{ macros.draw_forums(category, 8) }}
{% endif %}{% endfor %}
{% if team_online %}

{% trans %}Team Online{% endtrans %}

{% for user in team_online %}
{{ user.username }}{% if user.get_title() %} {{ _(user.get_title()) }}{% endif %}

{% endfor %} {% endif %}

{% trans %}Popular Threads{% endtrans %}


{% trans %}Forum Stats{% endtrans %}

{{ monitor.posts|int|intcomma }} {% trans %}Posts{% endtrans %}

{{ monitor.users|int|intcomma }} {% trans %}Members{% endtrans %}

{% endblock %}