Moving </head><body> into body of templates so that js and css can be embedded per...
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / reviews / reviewswaiting.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Reviews waiting for Approval</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!--TMPL_INCLUDE NAME="menu-reviews.inc" -->
8
9 <div id="doc3" class="yui-t2">
10    
11    <div id="bd">
12         <div id="yui-main">
13         <div class="yui-b"><div class="yui-g">
14
15 <h1>Reviews</h1>
16
17 <!-- TMPL_IF NAME="reviews" -->
18 <table>
19     <tr>
20         <th>
21             Authors
22         </th>
23         <th>
24             On biblio
25         </th>
26         <th>
27             Review
28         </th>
29         <th>
30             &nbsp;
31         </th>
32     </tr>
33     <!-- TMPL_LOOP NAME="reviews" -->
34     <tr>
35         <td>
36             <!-- TMPL_VAR NAME="surname" -->
37             <!-- TMPL_VAR NAME="firstname" -->
38         </td>
39         <td>
40             <!-- TMPL_VAR NAME="bibliotitle" -->
41         </td>
42         <td>
43             <!-- TMPL_VAR NAME="review" -->
44         </td>
45         <td>
46             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Approve</a> |
47             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Delete</a>
48         </td>
49     </tr>
50     <!-- /TMPL_LOOP -->
51 </table>
52 <!-- TMPL_ELSE -->
53 <b>No reviews awaiting approval or deletion</b>
54 <!-- /TMPL_IF -->
55
56 </div>
57 </div>
58 </div>
59
60 <!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
61 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->