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

{% trans "Comment moderation queue" %}

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

{% trans "No comments to moderate" %}.

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