{% extends "moderation/base.html" %} {% load typepad_filters %} {% block content-main %}

Welcome to the TypePad Motion Moderation dashboard!

This screen is only available to the site Moderator. From this dashboard, you can review all posts that have been flagged as inappropriate by your community members, review all new posts that are in the moderation queue awaiting your review, and review/delete any posts that TypePad Anti-Spam (if enabled) has identified as suspected spam.

{% if total_flagged or total_pending or total_spam %} {% if total_flagged %}

{% if total_flagged|greaterthan:1 %} There are {{ total_flagged }} posts that have been flagged for review. {% else %} There is 1 post that has been flagged for review. {% endif %} Flagged posts may contain offensive or inappropriate content but are still displayed on your site until you take action.

{% endif %} {% if total_pending %}

{% if total_pending|greaterthan:1 %} There are {{ total_pending }} posts that are held for approval. {% else %} There is 1 post held for approval. {% endif %} All new posts awaiting moderation will not be displayed until you approve them!

{% endif %} {% if total_spam %}

{% if total_spam|greaterthan:1 %} There are {{ total_spam }} posts that were identified as spam. {% else %} There is 1 post that was identified as spam. {% endif %} Spam posts will not show on your site unless you approve them. Remember to delete all spam posts from time to time to prevent the queue from overflowing.

{% endif %} {% else %}

Looks like there's nothing to do!

{% endif %}
{% endblock %}