Koha/koha-tmpl/intranet-tmpl/prog/en/reviews/reviewswaiting.tmpl
kados 5f4542992a This is a minor change, but affects all templates:
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00

49 lines
1.2 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="menus.inc" -->
<!--TMPL_INCLUDE NAME="menu-reviews.inc" -->
<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 -->
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->