X-Git-Url: http://git.ithinksw.org/~kgodey/maayanwich.git/blobdiff_plain/25e2e5d9d53f08724f2fe9661265d58d850c5d17..21a5b5aafd25a996530e2575b32fca7a0ccac30d:/templates/comments/moderation_queue.html diff --git a/templates/comments/moderation_queue.html b/templates/comments/moderation_queue.html new file mode 100644 index 0000000..73012b3 --- /dev/null +++ b/templates/comments/moderation_queue.html @@ -0,0 +1,75 @@ +{% 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 %}