{% extends "base.html" %} {% block title %}Comment - Error!{% endblock %} {% block content %}

Preview your comment

{% 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 }}

Your e-mail:

Your URL:

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


{{ comment_form.comment }}

{% endblock %}