{% extends "zinnia/base.html" %} {% load i18n zinnia_tags comments %} {% block title %}{% trans "Comment preview" %}{% endblock %} {% block body-class %}comment-preview{% endblock %} {% 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" %}

  1. form.cleaned_data.name
    {% if form.cleaned_data.url %} {{ form.cleaned_data.name }} {% else %} {{ form.cleaned_data.name }} {% endif %} {% trans "on" %} {% now "m/d/Y P" %}
    {{ comment|linebreaks }}
{% endif %} {% include "comments/zinnia/entry/form.html" %} {% endblock %}