{{ _('Comments') }}

{% if has_comments %} {% elif not comment_lock %}

{{ _('There are no comments at the moment.') }}

{% endif %} {% if request.user.is_authenticated and comment_form and not comment_lock %}
{% block comment_submit_title %}

{{ _('New comment') }}


{% endblock %} {% if is_new_user %}
{{ _('You need to have solved at least one problem before your voice can be heard.') }}
{% else %}
{% csrf_token %} {% if comment_form.errors %}
{{ comment_form.non_field_errors() }} {{ comment_form.parent.errors }} {% if comment_form.body.errors %}{{ _('Invalid comment body.') }}{% endif %}
{% endif %} {{ comment_form.parent }}
{{ comment_form.body }}

{% endif %}
{% endif %} {% if comment_lock %}
{{ _('Comments are disabled on this page.') }}
{% endif %}