{% extends 'board_base.html' %} {% load i18n %} {% load mptt_tags %} {% load forum_tags %} {% load forum_conversation_tags %} {% load forum_permission_tags %} {% load forum_tracking_tags %} {% block sub-title %}{{ forum.name }}{% endblock sub-title %} {% block content %}

{{ forum.name }}

{% if sub_forums %}
{% if request.user.is_authenticated %} {% endif %}
{% forum_list sub_forums %} {% endif %} {% if forum.is_forum %}
{% get_permission 'can_add_topic' forum request.user as user_can_add_topic %} {% if user_can_add_topic %}  {% trans "New topic" %} {% endif %}
{% with "pagination-sm" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %} {% if topics|length > 0 and request.user.is_authenticated %} {% trans "Mark topics read" %} {% endif %}
{% with topic_list_title="Announcements" topics=announces hide_if_empty=True %} {% include "forum_conversation/topic_list.html" %} {% endwith %} {% with "Topics" as topic_list_title %} {% include "forum_conversation/topic_list.html" %} {% endwith %}
{% if user_can_add_topic %}  {% trans "New topic" %} {% endif %}
{% with "pagination-sm" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %} {% if topics|length > 0 and request.user.is_authenticated %} {% trans "Mark topics read" %} {% endif %}
{% endif %} {% endblock content %}