{% extends "base.html" %} {% block title %}Comment Activity{% endblock %} {% block content %}

Global Comment Activity

Clear

Total comments: {{ pagination.total }}

{% if comments %}
{% for item in comments %}
{{ item.comment.user.username }} on {{ item.comment.created_at.strftime('%Y-%m-%d %H:%M') }}
Content: {{ item.comment.content_type }}/{{ item.comment.content_id }}
Status: {% if item.comment.status == 'p' %}Posted {% elif item.comment.status == 'm' %}Pending {% elif item.comment.status == 'b' %}Blocked {% elif item.comment.status == 'r' %}Revoked {% else %}Unknown {% endif %} (Reason: {{ item.comment.status_reason }})
{{ item.content_html|safe }}
{% if item.comment.moderated_by_id %} Last moderated by user #{{ item.comment.moderated_by_id }} on {{ item.comment.moderated_at.strftime('%Y-%m-%d %H:%M') if item.comment.moderated_at else 'N/A' }} {% endif %}
{% endfor %}
{# Pagination #} {% if pagination.pages > 1 %} {% endif %} {% else %}

No comments found.

{% endif %}

Back to moderation queue

{% endblock %}