+ + {% trans "Preview your comment" %} + + {% load comments %} + {% csrf_token %} + {% if next %}{% endif %} + {% if form.errors %} + {% if form.errors|length == 1 %}{% trans "Please correct the error below" %}{% else %}{% trans "Please correct the errors below" %}{% endif %} + {% else %} + {{ comment|linebreaks }} + + {% 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 %} + + + + + +