{% extends "zinnia/base.html" %} {% load i18n zinnia comments %} {% block title %}{% trans "Comment preview" %}{% endblock title %} {% block body-class %}comment-preview{% endblock body-class %} {% block content %} {% if form.errors %}

{% blocktrans count errors=form.errors|length %}Please correct following error.{% plural %}Please correct following errors.{% endblocktrans %}

{% else %}

{% trans "Preview of the comment" %}

    {% with comment=form.get_comment_object %}
  1. {{ comment.name }}

    {% if comment.url %} {{ comment.name }} {% else %} {{ comment.name }} {% endif %} {% trans "on" context "on date" %} {{ comment.submit_date|date:"SHORT_DATETIME_FORMAT" }}

    {{ comment.comment|linebreaks }}
  2. {% endwith %}
{% endif %} {% include "comments/zinnia/entry/form.html" %} {% endblock content %}