{% load i18n humanize markdownify %}
{% for comment in comment_list %}
{% if comment.is_removed %}
{{ comment.submit_date|naturaltime }}
{% translate "This comment was moderated." %}
{% else %}
{% if comment.user_url %}{% endif %}{% if comment.user %}{{ comment.user }}{% else %}{{ comment.name }}{% endif %}{% if comment.user_url %}{% endif %}{% if comment.user %} ({% translate "admin" %}){% endif %} — {{ comment.submit_date|naturaltime }}

{{ comment.comment|markdownify }}

{% endif %}
{% endfor %}