{% extends "admin/change_list.html" %} {% load adminmedia %} {% block title %}Comment moderation queue{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block branding %}

Comment moderation queue

{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if empty %}

No comments to moderate. {% else %}

{% for comment in comments %} {% endfor %}
Action Name Comment Email URL Authenticated? IP Address Date posted
{{ comment.name|escape }} {{ comment.comment|truncatewords:"50"|escape }} {{ comment.email|escape }} {{ comment.url|escape }} {% if comment.user %}yes{% else %}no{% endif %} {{ comment.ip_address|escape }} {{ comment.submit_date|date:"F j, P" }}
{% endif %} {% endblock %}