{% load i18n %} {% load comments %} {% load comments_ink %} {% with anchor=comment|get_anchor %}
{{ comment.level|indent_divs }}
{% if not comment.is_removed and comment_votes_enabled and comment.level == 0 %}
{% include "comments/comment_votes.html" %}
⋅ {% endif %} {% if comment.url and not comment.is_removed %} {{ comment.name }} {% else %} {{ comment.name }} {% endif %} ⋅ {{ comment.submit_date }}
{% if not comment.is_removed and comment_flagging_enabled and is_input_allowed %}
{% include "comments/comment_flags.html" %}
{% endif %}
{% if comment.is_removed %}

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

{% else %} {{ comment.comment|linebreaks|escape }} {% endif %}
{% endwith %}