{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block extra_css %} {% endblock %} {% block doccontent %} {% load comments %}
{% if request.user.is_anonymous %}

You must be logged in to comment.

{% else %}
{% csrf_token %} {% if next %}
{% endif %} {% if form.errors %}

{% blocktrans count counter=form.errors|length %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}

{% else %}

{% trans "Preview your comment" %}




{% trans "and" %} {% trans "or make changes" %}:

{% endif %} {% for field in form %} {% if field.is_hidden %}
{{ field }}
{% else %} {% if field.errors %}{{ field.errors }}{% endif %} {% ifequal field.name "honeypot" %}{% endifequal %} {% ifequal field.name "name" %}
{% endifequal %} {% ifequal field.name "email" %}
{% endifequal %} {% ifequal field.name "url" %}
{% endifequal %} {% ifequal field.name "comment" %}Add your comment (3000 characters remaining):

{% endifequal %} {% endif %} {% endfor %}

{% endif %}
{% endblock %}