{% extends "tree_comments/base.html" %} {% load i18n %} {% block title %} {% trans "Preview your comment" %} {% endblock title %} {% block content %} {% load tree_comments %}
{% 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" %}

{{ comment|linebreaks }}

{% trans "and" %} {# Translators: This string follows the 'Post your comment' submit button. #} {% trans "or make changes" %}:

{% endif %} {% for field in form %} {% if field.is_hidden %}
{{ field }}
{% else %} {% if field.errors %}{{ field.errors }}{% endif %}

{{ field.label_tag }} {{ field }}

{% endif %} {% endfor %}

{% endblock content %}