{% load aa_forum %} {% load i18n %} {% load django_bootstrap5 %}
{% translate "Reply" %}
{% if page_obj.has_next %}
{% translate "Note: You are not on the last page of this topic and may miss the most recent replies." %}
{% endif %} {% if topic.is_locked %}
{% translate "Warning: this topic is locked! Only admins can reply." %}
{% endif %}
{% csrf_token %} {% bootstrap_field reply_form.message %} {% if topic.first_message.user_created == request.user or perms.aa_forum.manage_forum %} {% if not topic.is_locked %} {% bootstrap_field reply_form.close_topic %} {% endif %} {% if topic.is_locked and perms.aa_forum.manage_forum %} {% bootstrap_field reply_form.reopen_topic %} {% endif %} {% endif %} {% include "aa_forum/partials/form/required-field-hint.html" %}