Koha/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tmpl
Owen Leonard 62e94fd1b0 More changes to enable YUI-Grids CSS layout
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:44 -05:00

59 lines
1.4 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Reviews waiting for Approval</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!--TMPL_INCLUDE NAME="menu-reviews.inc" -->
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b"><div class="yui-g">
<h1>Reviews</h1>
<!-- TMPL_IF NAME="reviews" -->
<table>
<tr>
<th>
Authors
</th>
<th>
On biblio
</th>
<th>
Review
</th>
<th>
&nbsp;
</th>
</tr>
<!-- TMPL_LOOP NAME="reviews" -->
<tr>
<td>
<!-- TMPL_VAR NAME="surname" -->
<!-- TMPL_VAR NAME="firstname" -->
</td>
<td>
<!-- TMPL_VAR NAME="bibliotitle" -->
</td>
<td>
<!-- TMPL_VAR NAME="review" -->
</td>
<td>
<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=approve&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Approve</a> |
<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Delete</a>
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<!-- TMPL_ELSE -->
<b>No reviews awaiting approval or deletion</b>
<!-- /TMPL_IF -->
</div>
</div>
</div>
<!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->