{% if comments %}
{% for comment in comments %}
{{ comment_credit(comment) }} {% if current_user.is_authenticated and current_user == comment.user %} {% endif %} {{comment.created | date}}
{{ comment.text_html|safe }}
{% endfor %}
{% endif %} {% if current_user.is_authenticated %}
{{ comment_form.hidden_tag() }} {{ comment_form.text(class="comment-text") }}
{% endif %} {% block scripts %} {% endblock %}