source: extensions/Comments_on_Albums/template/admin_comments.tpl @ 11267

Last change on this file since 11267 was 11267, checked in by mistic100, 13 years ago

big code cleaning

File size: 2.3 KB
Line 
1{* this is a copy of admin/theme/defaults/template/comments.tpl a bit modified *}
2 
3{literal}
4<script type="text/javascript">
5  $(document).ready(function(){
6    $(".checkComment").click(function(event) {
7      if (event.target.type !== 'checkbox') {
8        var checkbox = $(this).children("input[type=checkbox]");
9        $(checkbox).attr('checked', !$(checkbox).is(':checked'));
10      }
11    });
12    $("#commentSelectAll").click(function () {
13      $(".checkComment input[type=checkbox]").attr('checked', true);
14      return false;
15    });
16    $("#commentSelectNone").click(function () {
17      $(".checkComment input[type=checkbox]").attr('checked', false);
18      return false;
19    });
20    $("#commentSelectInvert").click(function () {
21      $(".checkComment input[type=checkbox]").each(function() {
22        $(this).attr('checked', !$(this).is(':checked'));
23      });
24      return false;
25    });
26  });
27</script>
28{/literal}
29
30<div class="titrePage">
31  <h2>{'Waiting'|@translate}</h2>
32</div>
33
34<h3>{'User comments validation'|@translate}</h3>
35
36{if !empty($comments) }
37<form method="post" action="{$F_ACTION}">
38
39  <table width="99%">
40  {foreach from=$comments item=comment name=comment}
41    <tr valign="top" class="{if $smarty.foreach.comment.index is odd}row2{else}row1{/if}">
42      <td style="width:50px;" class="checkComment">
43        <input type="checkbox" name="comments[]" value="{$comment.ID}">
44      </td>
45      <td>
46        <div class="comment">
47          <a class="illustration" href="{$comment.CAT_URL}">{$comment.CAT_NAME}</a>
48          <p class="commentHeader"><strong>{$comment.AUTHOR}</strong> - <em>{$comment.DATE}</em></p>
49          <blockquote>{$comment.CONTENT}</blockquote>
50        </div>
51      </td>
52    </tr>
53  {/foreach}
54  </table>
55
56  <p class="checkActions">
57    {'Select:'|@translate}
58    <a href="#" id="commentSelectAll">{'All'|@translate}</a>,
59    <a href="#" id="commentSelectNone">{'None'|@translate}</a>,
60    <a href="#" id="commentSelectInvert">{'Invert'|@translate}</a>
61  </p>
62
63  <p class="bottomButtons">
64    <input class="submit" type="submit" name="validate_albums" value="{'Validate'|@translate}">
65    <input class="submit" type="submit" name="reject_albums" value="{'Reject'|@translate}">
66  </p>
67
68</form>
69{/if}
Note: See TracBrowser for help on using the repository browser.