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

Comment Moderation Queue

Comments pending approval: {{ 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 }}
Style: {{ item.comment.user_comment_style }} {% if item.comment.status_reason == 'd' %} Blocked words detected: {{ item.blocked_words|join(', ') }} {% endif %}
{{ item.content_html|safe }}
{% endfor %}
{# Pagination #} {% if pagination.pages > 1 %} {% endif %} {% else %}

No comments pending moderation.

{% endif %}

View all comments

{% endblock %}