{% extends "base.html" %} {% block title %}Preview your comment{% endblock %} {% block content %}
{% if comment_form.has_errors %}

Please correct the following errors.

{% else %}
{{ comment.comment|escape|urlizetrunc:"40"|linebreaks }}

Posted by {{ comment.person_name }}

Or edit it again

{% endif %} {% if comment_form.person_name.errors %} {{ comment_form.person_name.html_error_list }} {% endif %}

{{ comment_form.person_name }}

{% if comment_form.comment.errors %} {{ comment_form.comment.html_error_list }} {% endif %}


{{ comment_form.comment }}

{% endblock %}