{% extends "references/base.html" %} {% load i18n %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block content %} {% load comments %}
{% if form.errors %}

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

{% else %}

{% trans "Preview your comment" %}

{{ comment|linebreaks }}

{% trans "or make changes" %}:

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

{% if form.errors %} {{ form.non_field_errors }} {% else %} Great, your post is ready....
{% endif %}

{% endblock %}