{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block content_title %}{{ block.super }}{% tabs opts %}{% endblock %} {% block extrahead %}{{block.super}} {% endblock %} {% block tools %} {% include "common/snippet_follow.html" %}

{% endblock %} {% block content %}
{% if perms.common.add_comment %}
{% csrf_token %}
{% endif %} {% for c in comments %}
{% if c.user.avatar %}{% endif %} {{ c.user.username }}
{% if c.attachment %}
{{c.attachmentlink}}
{% endif %}
{% if c.safe %}{{c.comment|safe}}{% else %}{{c.comment}}{% endif %}
{{ c.lastmodified | timesince }}
{% endfor %}
{% endblock %}