{% load i18n %} {% if comments %}

{% trans "Comments" %}

{% for comment in comments %}

{% trans "Comment posted at" %} {{comment.created}} {% trans "by" %} {{comment.name}}

{% if ha %} {% trans "Edit/delete/publish this comment" %} {% endif %}
{{comment.body}}
{% endfor %} {% else %}

{% trans "No comments" %}

{% endif %}

{% trans "Post a comment" %}:

{% csrf_token %} {% include "two.bootstrap/bootstrap-form.html" with fields=form.content_fields %}