{% load comments i18n %} {% get_comment_form for message as form %}
{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% endif %} {% endfor %} {% if form.comment.errors %}{{ form.comment.errors }}{% endif %} {% blocktrans with name=user.get_full_name %}Comment by {{ name }}:{% endblocktrans %}
{{ form.comment }}
{% if user.private %} {% trans "Despite your privacy settings, your real name will be published with comment.
There are no anonymous comments." %}

{% endif %}