{% load aa_forum_template_variables %} {% load i18n %} {% load static %} {% load evelinks %} {% set_template_variable category_slug = board.category.slug %} {% set_template_variable board_slug = board.slug %} {% set_template_variable board_groups = board.groups.all %} {% set_template_variable board_child_boards = board.child_boards.all %}
{% if board.num_unread > 0 %} {% translate 'New posts' %} {% else %} {% translate 'No new posts' %} {% endif %}

{{ board.name }}

{% if board.description %}

{{ board.description }}

{% endif %} {% if board_groups %}

{% translate "This board is restricted to the following group(s):" %}
{{ board_groups|join:", " }}

{% endif %} {% if board_child_boards %}

{% translate "Child Boards:" %} {% for child_board in board_child_boards %} {{ child_board.name }} {% if child_board.num_unread > 0 %} {% translate "New" %} {% endif %} {% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %}