{% extends "base.html" %} {% load generic_markup i18n %} {% block title %}{% trans 'Preview your comment' %}{% endblock %} {% block content %}
{% if comment_form.has_errors %}

{% trans 'Please correct the following errors.' %}

{% else %}
{# {{ comment.comment|escape|urlizetrunc:"40"|linebreaks }} #} {{ comment.comment|apply_markup:"restructuredtext"|smartypants }}

Posted by {{ comment.person_name|escape }}

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

{% trans 'You can use restructured text markup in your comment.' %}

{% endblock %}