{% load user_tags %} {% load pagination_tags %} {% load news_tags %} {% autopaginate comments 25 %} {% for comment in comments %}
{% if comment.is_anonymous and not user.is_staff %} {% else %} {% endif %}

{% if comment.is_anonymous and not user.is_staff %} anonymous {% else %} {{ comment.author.username }} {% endif %} at {{ comment.date_added|date:"g:iA, N j, Y" }} {% if owner == user or comment.author == user or user.is_staff %} delete {% endif %}

{{ comment.body|striptags }}

{% endfor %}
{% paginate %}