first go at moving templates to a modules/ dir
[koha.git] / 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
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!--TMPL_INCLUDE NAME="menu-reviews.inc" -->
7
8 <h1>Reviews</h1>
9
10 <!-- TMPL_IF NAME="reviews" -->
11 <table>
12     <tr>
13         <th>
14             Authors
15         </th>
16         <th>
17             On biblio
18         </th>
19         <th>
20             Review
21         </th>
22         <th>
23             &nbsp;
24         </th>
25     </tr>
26     <!-- TMPL_LOOP NAME="reviews" -->
27     <tr>
28         <td>
29             <!-- TMPL_VAR NAME="surname" -->
30             <!-- TMPL_VAR NAME="firstname" -->
31         </td>
32         <td>
33             <!-- TMPL_VAR NAME="bibliotitle" -->
34         </td>
35         <td>
36             <!-- TMPL_VAR NAME="review" -->
37         </td>
38         <td>
39             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Approve</a> |
40             <a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Delete</a>
41         </td>
42     </tr>
43     <!-- /TMPL_LOOP -->
44 </table>
45 <!-- TMPL_ELSE -->
46 <b>No reviews awaiting approval or deletion</b>
47 <!-- /TMPL_IF -->
48
49 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->