{% load i18n %} {% load comments %} {% load comments_xtd %} {% for item in comments %} {% if item.comment.level == 0 %}
  • {% else %}
    {% endif %}
    {{ item.comment.user_email|xtd_comment_gravatar }}
    {{ item.comment.submit_date }} - {% if item.comment.url and not item.comment.is_removed %}{% endif %}{{ item.comment.name }}{% if item.comment.url %}{% endif %}   {% if allow_flagging %} {% endif %}
    {% if item.comment.is_removed %}

    {% trans "This comment has been removed." %}

    {% else %}

    {{ item.comment.comment|render_markup_comment }}
    {% if allow_feedback %} {% include "includes/django_comments_xtd/user_feedback.html" %} {% endif %} {% if item.comment.allow_thread and not item.comment.is_removed %} {% if allow_feedback %}{% endif %} {% trans "Reply" %} {% endif %}

    {% endif %}
    {% if not item.comment.is_removed and item.children %}
    {% render_xtdcomment_tree with comments=item.children %}
    {% endif %}
    {% if item.comment.level == 0 %}
  • {% else %}{% endif %} {% endfor %}