{% extends "base.html" %} {% block main %}

{% if action == "spam" %} {{ i18n['manage_spam'] }} {% else %} {{ i18n['manage_comments'] }} {% endif %}

{% if locations | length == 0 %} {% if action == "spam" %}

{{ i18n['hooray_no_spam'] }}

{% endif %} {% endif %} {% if spam_comments is defined %} {% for comment in spam_comments %}

gravatar portrait

#{{comment.comments_id}}  {{comment.email}}  {{comment.created_on}}  {{ i18n['spam_score'] }}:  {{ comment.spam_score | round(5) }}  {{ i18n['published'] }}: {{ comment.is_published }}

{{comment.content}}
{% endfor %} {% endif %}
{% endblock %}