{% 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 %}
Action |
Name |
Comment |
Email |
URL |
Authenticated? |
IP Address |
Date posted |
{% for comment in comments %}
|
{{ comment.name }} |
{{ comment.comment|truncatewords:"50" }} |
{{ comment.email }} |
{{ comment.url }} |
|
{{ comment.ip_address }} |
{{ comment.submit_date|date:"F j, P" }} |
{% endfor %}
{% endif %}
{% endblock %}