Koha/koha-tmpl/intranet-tmpl/prog/en/modules/reviews/reviewswaiting.tmpl
Joshua Ferraro 3d1fb4462f nomenclature improvements, updating README.txt
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-12-22 15:10:32 -06:00

62 lines
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Comments waiting for Approval</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!--TMPL_INCLUDE NAME="cat-search.inc" -->
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; Comments Awaiting Moderation</div>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<h1>Comments</h1>
<!-- TMPL_IF NAME="reviews" -->
<table>
<tr>
<th>
Authors
</th>
<th>
On biblio
</th>
<th>
Comment
</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&amp;reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Approve</a> |
<a href="/cgi-bin/koha/reviews/reviewswaiting.pl?op=delete&amp;reviewid=<!-- TMPL_VAR NAME="reviewid" -->">Delete</a>
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<!-- TMPL_ELSE -->
<b>No comments to moderate</b>
<!-- /TMPL_IF -->
</div>
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->