{% load i18n %} {% load comments %} {% load comments_xtd %}
{% for comment in comment_list %}
{{ comment.user_email }}
{{ comment.submit_date }} - {% if comment.url and not comment.is_removed %}{% endif %}{{ comment.name }}{% if comment.url %}{% endif %} {% if comment.user and comment.user|has_permission:"django_comments.can_moderate" %} {% trans "moderator" %}{% endif %}  
{% if not comment.is_removed and perms.comments.can_moderate %} {% endif %}
{% if comment.is_removed %}

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

{% else %}
{% include "includes/django_comments_xtd/comment_content.html" with content=comment.comment %}
{% endif %}
{% endfor %}