{% load i18n %} {% load static %} {% load evelinks %} {% load aa_forum %} {% aa_forum_template_variable category_slug = board.category.slug %} {% aa_forum_template_variable board_slug = board.slug %} {% aa_forum_template_variable board_groups = board.groups.all %} {% aa_forum_template_variable board_child_boards = board.child_boards.all %}
{{ board.name }} {% if board.num_unread > 0 %} {% endif %}
{% if board.description %}{{ board.description }}
{% endif %} {% if board_groups %}
{% blocktranslate count group_count=board_groups|length %}This board is restricted to the following group:{% plural %}This board is restricted to the following groups:{% endblocktranslate %}
{{ board_groups|join:", " }}
{% translate "Child boards:" %} {% for child_board in board_child_boards %} {{ child_board.name }} {% if child_board.num_unread > 0 %} {% endif %} {% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}