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

{% trans 'Preview' %}:

{{ comment|escape|linebreaks }}

{% trans "Update" %}

{% endif %} {{ form.content_type }} {{ form.object_pk }} {{ form.timestamp }} {{ form.security_hash }} {% if form.comment.errors %}{{ form.comment.errors }}{% endif %}

{{ form.comment }}

{% endblock %}