{% csrf_token %}
{% if request.user.is_anonymous() and settings.ALLOW_POSTING_BEFORE_LOGGING_IN == False %} {% if not thread.closed %} {{ settings.WORDS_LOGIN_SIGNUP_TO_ANSWER|escape }} {% endif %} {% else %} {% if not thread.closed and settings.READ_ONLY_MODE_ENABLED == False %}
{% spaceless %}

{% if answers %} {{ settings.WORDS_YOUR_ANSWER|escape }} {% else %} {{ settings.WORDS_BE_THE_FIRST_TO_ANSWER_THIS_QUESTION|escape }} {% endif %}

{% endspaceless %}

{% if request.user.is_anonymous() %} {{ settings.WORDS_INSTRUCTION_TO_POST_ANONYMOUSLY }} {% elif request.user==question.author %} {{ settings.WORDS_INSTRUCTION_TO_ANSWER_OWN_QUESTION }} {% endif %} {{ settings.WORDS_INSTRUCTION_TO_GIVE_ANSWER }}

{{ settings.WORDS_ADD_ANSWER|escape }}

{{ macros.edit_post( answer, user = request.user, editor_type = settings.EDITOR_TYPE ) }} {% if answer.recaptcha %}
{{ macros.form_field_with_errors(answer.recaptcha) }}
{% endif %} {% if settings.WIKI_ON %} {{ macros.checkbox_in_div(answer.wiki) }} {% endif %} {% if settings.GROUPS_ENABLED and request.user.is_authenticated() and request.user.can_make_group_private_posts() %} {{ macros.checkbox_in_div(answer.post_privately) }} {% endif %}
{% endif %} {% endif %}