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

Oops, please correct the error{{ form.errors|pluralize }} below

{% else %}

Preview your comment

{{ comment|linebreaks }}
{% endif %} {% if not form.errors or form.errors.recaptcha %}{% recaptcha_html %}{% endif %} {% if form.errors.recaptcha %}
{{ form.errors.recaptcha }}
{% endif %} {% if not form.errors or form.errors.recaptcha %}
and or make changes:
{% endif %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% endif %} {% endfor %}

{% endblock %}