{% extends "comments/base.html" %} {% load i18n comments %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block content %}
{% 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 "Post your comment or make changes below." %}

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