{% extends "comments/base.html" %}{% load i18n crispy_forms_tags comments %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block content %}
{% csrf_token %} {% if next %}
{% endif %} {% if form.errors %}

{% blocktrans count form.errors|length as counter %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}

{% else %}

{% trans "Preview of your comment" %}

{{ comment|linebreaks }}

{% trans "Or make changes" %}:

{% endif %} {{ form|crispy }}
{% endblock %}