{% csrf_token %} {% include "question/subscribe_by_email_prompt.html" %}
{% if request.user.is_anonymous() and settings.ALLOW_POSTING_BEFORE_LOGGING_IN == False %} {% if not question.closed %} {% trans %}Login/Signup to Answer{% endtrans %} {% endif %} {% else %} {% if not question.closed %}
{% spaceless %}

{% if answers %} {% trans %}Your answer{% endtrans %} {% else %} {% trans %}Be the first one to answer this question!{% endtrans %} {% endif %}

{% endspaceless %}
{% if request.user.is_anonymous() %}
{% trans %}you can answer anonymously and then login{% endtrans %}
{% else %}

{% if request.user==question.author %} {% trans %}answer your own question only to give an answer{% endtrans %} {% else %} {% trans %}please only give an answer, no discussions{% endtrans %} {% endif %}

{% endif %} {{ macros.edit_post(answer) }} {% if settings.WIKI_ON %} {{ macros.checkbox_in_div(answer.wiki) }} {% endif %} {% endif %} {% endif %}