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

Please correct the error{{ form.errors|pluralize }} below

{% else %}

Preview your comment

{{ comment|linebreaks }}

and or make changes:

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

{% endblock %}