Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reviews / reviewswaiting.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; Comments waiting for Approval</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/javascript">//<![CDATA[
6 $(document).ready(function() {
7 $.tablesorter.addParser({
8     id: 'articles', 
9     is: function(s) {return false;  }, 
10     format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); }, 
11     type: 'text' 
12 });
13         $("#commentst").tablesorter({
14                 sortList: [[0,0]],
15                 headers: { 1: {sorter: 'articles'},2: { sorter: false },3: { sorter: false }}
16         }); 
17 }); 
18 //]]>
19 </script>
20 </head>
21 <body>
22 <!-- TMPL_INCLUDE NAME="header.inc" -->
23 <!--TMPL_INCLUDE NAME="cat-search.inc" -->
24
25 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
26 &rsaquo; Comments Awaiting Moderation</div>
27
28 <div id="doc3" class="yui-t2">
29    
30    <div id="bd">
31         <div id="yui-main">
32         <div class="yui-b">
33
34 <h1>Comments</h1>
35
36 <!-- TMPL_IF NAME="reviews" -->
37 <table id="commentst">
38     <thead><tr>
39         <th>
40             Commenter
41         </th>
42         <th>
43             On Title
44         </th>
45         <th>
46             Comment
47         </th>
48         <th>
49             &nbsp;
50         </th>
51     </tr></thead>
52     <tbody><!-- TMPL_LOOP NAME="reviews" -->
53     <tr>
54         <td>
55             <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->"><!-- TMPL_VAR NAME="surname" -->, <!-- TMPL_VAR NAME="firstname" --></a>
56         </td>
57         <td>
58             <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="bibliotitle" --></a>
59         </td>
60         <td>
61             <!-- TMPL_VAR NAME="review" ESCAPE="HTML" -->
62         </td>
63         <td>
64             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&amp;reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Approve</a> |
65             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&amp;reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Delete</a>
66         </td>
67     </tr>
68     <!-- /TMPL_LOOP --></tbody>
69 </table>
70 <!-- TMPL_ELSE -->
71 <b>No comments to moderate</b>
72 <!-- /TMPL_IF -->
73
74 </div>
75 </div>
76 <div class="yui-b">
77 <!-- TMPL_INCLUDE NAME="tools-menu.inc" -->
78 </div>
79 </div>
80 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->