{% 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 %} {%- if user.is_authenticated() -%}
{%- endif %}

{{ macros.draw_forums(category, 8) }}
{% endif %} {% else %}

{% trans %}Looks like there are no forums that you have permission to see.{% endtrans %}

{% endfor %}
{% for rank in ranks_online %}{% if rank.online %}

{% trans rank_name=_(rank.name) %}{{ rank_name }} Online{% endtrans %}

    {% for user in rank.online %}
  • {{ user.username }} {% if rank.title or user.title %}{% if user.title %}{{ user.title }}{% else %}{{ _(rank.title) }}{% endif %}{% endif %}
  • {% endfor %}
{% endif %}{% endfor %} {% if popular_threads %}

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

{% endif %}
{{ monitor.posts|int|intcomma }} {% trans %}Posts{% endtrans %}
{{ monitor.users|int|intcomma }} {% trans %}Members{% endtrans %}
{% endblock %}