{% load i18n %} {% load markup %} {% if preview %}

{% trans "Preview" %}

{{ user }} (on {% now "Y-m-d H:i:s" %})
{{ preview.body|markdown }}
{% endif %}
{% if not request.user.is_authenticated %} {% trans "To post a reply, please" %} sign in. {% else %}

{% trans "Post a Reply" %}

{% if form.body.errors %}
{{ form.body.errors|join:", " }}
{% endif %}
{{ form.body }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{% endif %}