{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Preview comment" %} | {{ block.super }}{% endblock %} {% block content %}

{% trans "Preview your comment" %}

{% if comment_form.has_errors %}

{% trans "Please correct the following errors" %}

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

Posted by {{ comment.person_name }}

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