{% load i18n %} {% load static %} {% load honeypot %} {% if comment_form or page.comments %}

{% trans "Comments" %}

{% endif %} {% if comment_form %} {% with comment_form as form %} {{ form.non_field_errors }}
{% csrf_token %} {% render_honeypot_field "hp_website" %}
{{ form.author.errors }} {{ form.author }}
{{ form.email.errors }} {{ form.email }} {{ form.url.errors }} {{ form.url }}
{{ form.content.errors }} {{ form.content }}
{% endwith %} {% endif %}