{% extends "aa_forum/base.html" %} {% load i18n %} {% block page_title %} {{ topic.subject }} ยป {% translate "Forum" %} {% endblock %} {% block aa_forum_header %} {% include "aa_forum/partials/breadcrumb.html" with category=topic.board.category board=topic.board topic=topic %} {% endblock %} {% block aa_forum_body %}
{% include "aa_forum/partials/forum/topic/pagination.html" %} {% for message in page_obj %} {% include "aa_forum/partials/forum/topic/message.html" %} {% endfor %} {% include "aa_forum/partials/forum/topic/pagination.html" %} {% if not topic.is_locked %} {% include "aa_forum/partials/forum/topic/reply.html" %} {% elif topic.is_locked and perms.aa_forum.manage_forum %} {% include "aa_forum/partials/forum/topic/reply.html" %} {% endif %} {% endblock %} {% block extra_css %} {% include "aa_forum/bundles/ckeditor5-css.html" %} {% include "aa_forum/bundles/aa-forum-css.html" %} {% endblock %} {% block extra_javascript %} {% include "aa_forum/bundles/ckeditor5-js.html" %} {% include "aa_forum/bundles/aa-forum-ckeditor-js.html" %} {% include "aa_forum/bundles/aa-forum-oembed-js.html" %} {% include "bundles/clipboard-js.html" %} {% include "aa_forum/bundles/aa-forum-bootstrap-js.html" %} {% endblock %}