{% load i18n %} {% load comments_tree %}
{% for comment in comment_list %}
{{ comment.user_email|tree_comment_gravatar }}
{{ comment.submit_date }} - {% if comment.url and not comment.is_removed %}{% endif %}{{ comment.name }}{% if comment.url %}{% endif %}  
{% if comment.is_removed %}

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

{% else %}
{% include "includes/django_comments_tree/comment_content.html" with content=comment.comment %}
{% endif %} {% if comment.allow_thread and not comment.is_removed %} {% trans "Reply" %} {% endif %}
{% endfor %}