2009-06-10 22:14:44 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
|
|
|
|
xmlns:tal="http://xml.zope.org/namespaces/tal"
|
|
|
|
xmlns:metal="http://xml.zope.org/namespaces/metal"
|
|
|
|
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
|
|
|
lang="en"
|
|
|
|
metal:use-macro="context/main_template/macros/master"
|
2009-06-17 01:25:36 +02:00
|
|
|
i18n:domain="plone.app.discussion">
|
2009-06-10 22:14:44 +02:00
|
|
|
<body>
|
|
|
|
|
|
|
|
<metal:scripts fill-slot="javascript_head_slot">
|
|
|
|
<script type="text/javascript">
|
|
|
|
(function($) {$().ready(function() {
|
|
|
|
$('form.background-form').submit(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var target = $(this).attr('action');
|
|
|
|
var params = $(this).serialize();
|
|
|
|
var cell = $(this).parent().get(0);
|
|
|
|
var row = $(cell).parent().get(0);
|
|
|
|
$.post(target, params, function(data) {
|
|
|
|
$(row).fadeOut("normal", function() {
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});})(jQuery);
|
|
|
|
</script>
|
|
|
|
</metal:scripts>
|
|
|
|
|
|
|
|
<metal:main fill-slot="main">
|
2009-06-28 20:38:25 +02:00
|
|
|
<tal:main-macro metal:define-macro="main"
|
|
|
|
tal:define="items view/comments">
|
2009-06-10 22:14:44 +02:00
|
|
|
|
2009-06-28 20:38:25 +02:00
|
|
|
<h1 class="documentFirstHeading" i18n:translate="title_review">
|
|
|
|
Review comments
|
|
|
|
</h1>
|
2009-06-10 22:14:44 +02:00
|
|
|
|
2009-06-28 20:38:25 +02:00
|
|
|
<ul class="filter">
|
|
|
|
<li class="all">
|
|
|
|
<form method="post"
|
|
|
|
action="#"
|
|
|
|
tal:attributes="action string:${context/absolute_url}/@@moderate-comments">
|
|
|
|
<input type="submit" value="All" class="context" />
|
|
|
|
</form>
|
|
|
|
</li>
|
|
|
|
<li class="pending">
|
|
|
|
<form method="post" action="#" tal:attributes="action string:${context/absolute_url}/@@moderate-comments">
|
|
|
|
<input type="hidden" name="form.button.FilterPending" value="1" />
|
|
|
|
<input type="submit" value="Pending" class="context" />
|
|
|
|
</form>
|
|
|
|
</li>
|
|
|
|
<li class="approved">
|
|
|
|
<form method="post" action="#" tal:attributes="action string:${context/absolute_url}/@@moderate-comments">
|
|
|
|
<input type="hidden" name="form.button.FilterPublished" value="1" />
|
|
|
|
<input type="submit" value="Published" class="context" />
|
|
|
|
</form>
|
|
|
|
</li>
|
|
|
|
<!--
|
|
|
|
<li class="spam">
|
|
|
|
<a href="#"
|
|
|
|
tal:attributes="href string:${context/absolute_url}/@@comments-spam"
|
|
|
|
i18n:translate="title_filter_spam">Spam</a>
|
|
|
|
</li>
|
|
|
|
-->
|
|
|
|
</ul>
|
2009-06-28 13:49:00 +02:00
|
|
|
|
2009-06-26 20:59:37 +02:00
|
|
|
<form method="post"
|
|
|
|
action="#"
|
2009-06-28 20:38:25 +02:00
|
|
|
class="kssattr-serveraction-foldercontents_update_table"
|
2009-06-26 20:59:37 +02:00
|
|
|
tal:attributes="action string:${context/absolute_url}/@@bulk-actions">
|
|
|
|
<select name="form.select.BulkAction">
|
2009-06-26 16:57:45 +02:00
|
|
|
<option selected="selected" value="-1" i18n:translate="title_bulkactions">Bulk Actions</option>
|
2009-06-26 20:59:37 +02:00
|
|
|
<!--<option value="retract" i18n:translate="bulkactions_retract">Retract</option>-->
|
|
|
|
<option value="publish" i18n:translate="bulkactions_publish">Publish</option>
|
|
|
|
<!--<option value="mark_as_spam" i18n:translate="bulkactions_markasspam">Mark as Spam</option>-->
|
2009-06-26 16:57:45 +02:00
|
|
|
<option value="delete" i18n:translate="bulkactions_delete">Delete</option>
|
|
|
|
</select>
|
|
|
|
<input id="dobulkaction"
|
|
|
|
type="submit"
|
2009-06-26 20:59:37 +02:00
|
|
|
class="standalone allowMultiSubmit"
|
2009-06-26 16:57:45 +02:00
|
|
|
value="Apply"
|
|
|
|
name="form.button.BulkAction"
|
|
|
|
i18n:attributes="value label_apply;" />
|
2009-06-22 12:07:36 +02:00
|
|
|
|
2009-06-28 20:29:01 +02:00
|
|
|
|
2009-06-28 20:38:25 +02:00
|
|
|
<table id="review-comments" class="listing" style="width: 100%" tal:condition="items">
|
2009-06-10 22:14:44 +02:00
|
|
|
<thead>
|
2009-06-28 20:38:25 +02:00
|
|
|
<tr>
|
2009-06-29 11:54:53 +02:00
|
|
|
<th class="nosort"><input name="check_all" type="checkbox" value="0" /></th>
|
2009-06-22 12:07:36 +02:00
|
|
|
<th i18n:translate="heading_author">Commenter</th>
|
2009-06-10 22:14:44 +02:00
|
|
|
<th i18n:translate="heading_date">Date</th>
|
2009-06-22 12:07:36 +02:00
|
|
|
<th i18n:translate="heading_context">In Response To</th>
|
2009-06-10 22:14:44 +02:00
|
|
|
<th i18n:translate="heading_subject">Subject</th>
|
|
|
|
<th i18n:translate="heading_comment">Comment</th>
|
2009-06-28 20:38:25 +02:00
|
|
|
<th i18n:translate="heading_action">Action</th>
|
2009-06-10 22:14:44 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tal:block repeat="item items">
|
2009-06-22 12:07:36 +02:00
|
|
|
<tr style="vertical-align: top" class="commentrow"
|
|
|
|
tal:define="odd repeat/item/odd"
|
|
|
|
tal:attributes="class python: odd and 'odd' or 'even'">
|
|
|
|
<td class="notDraggable">
|
|
|
|
<input type="checkbox"
|
|
|
|
class="noborder"
|
|
|
|
name="paths:list" id="#"
|
|
|
|
value="#"
|
|
|
|
tal:attributes="value item/getPath;
|
|
|
|
id string:cb_${item/id};
|
|
|
|
checked item/checked|nothing;
|
2009-06-26 20:59:37 +02:00
|
|
|
alt string:Select ${item/Title};
|
|
|
|
title string:Select ${item/Title}" />
|
2009-06-22 12:07:36 +02:00
|
|
|
<input type="hidden" name="selected_obj_paths:list" value="#"
|
|
|
|
tal:attributes="value item/getURL" />
|
|
|
|
</td>
|
2009-06-10 22:14:44 +02:00
|
|
|
<td tal:content="item/Creator" />
|
2009-06-22 12:07:36 +02:00
|
|
|
<td tal:content="python:toLocalizedTime(item.ModificationDate, long_format=1)" />
|
2009-06-10 22:14:44 +02:00
|
|
|
<td>
|
2009-06-22 12:07:36 +02:00
|
|
|
<a tal:attributes="href item/getURL"
|
|
|
|
tal:content="item/@@plone_context_state/parent|nothing" />
|
2009-06-10 22:14:44 +02:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a tal:attributes="href item/getURL"
|
|
|
|
tal:content="item/Title" />
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td tal:content="structure python:view.cook(item.Description)" />
|
2009-06-29 11:54:53 +02:00
|
|
|
<td style="width: 11em;">
|
2009-06-10 22:14:44 +02:00
|
|
|
<form action=""
|
|
|
|
class="background-form"
|
|
|
|
method="post"
|
|
|
|
style="display: inline"
|
2009-06-26 18:03:19 +02:00
|
|
|
tal:attributes="action string:${item/getURL}/@@moderate-publish-comment"
|
|
|
|
tal:condition="python:item.review_state == 'pending'">
|
2009-06-10 22:14:44 +02:00
|
|
|
<input type="hidden" name="comment_id" tal:attributes="value item/getId" />
|
2009-06-26 16:57:45 +02:00
|
|
|
<input type="hidden" name="workflow_action" tal:attributes="value view/transition" />
|
2009-06-10 22:14:44 +02:00
|
|
|
<input class="context comment-publish-button"
|
|
|
|
type="submit"
|
|
|
|
value="Publish"
|
|
|
|
i18n:attributes="value label_publish"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
<form action=""
|
|
|
|
method="post"
|
|
|
|
class="background-form"
|
|
|
|
style="display: inline"
|
2009-06-11 15:44:22 +02:00
|
|
|
tal:attributes="action string:${item/getURL}/@@moderate-delete-comment">
|
2009-06-10 22:14:44 +02:00
|
|
|
<input type="hidden" name="comment_id" tal:attributes="value item/getId" />
|
|
|
|
<input class="destructive comment-delete-button"
|
|
|
|
type="submit"
|
|
|
|
value="Delete"
|
|
|
|
i18n:attributes="value label_delete;"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tal:block>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2009-06-26 20:59:37 +02:00
|
|
|
</form>
|
2009-06-10 22:14:44 +02:00
|
|
|
</tal:main-macro>
|
|
|
|
</metal:main>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|