{% extends "base.html" %} {% load i18n django_markdown %} {% block title %}{% trans "Preview your comment" %}{% endblock %} {% block maincontent %} {% 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 your comment" %}

{% if user.get_profile.thumbnail %}{% else %}{% endif %}
{{user}}
{{comment|markdown_safe}}
{% endif %}
{% include "comments/form.html" %} {% endblock %}