{% csrf_token %}
{% if request.user.is_anonymous() and settings.ALLOW_POSTING_BEFORE_LOGGING_IN == False %}
{% if not thread.closed %}
{% trans %}Login/Signup to Answer{% endtrans %}
{% endif %}
{% else %}
{% if not thread.closed %}
{% if answers %}
{% trans %}Your answer{% endtrans %}
{% else %}
{% trans %}Be the first one to answer this question!{% endtrans %}
{% endif %}
{% 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 %}