Koha/koha-tmpl/intranet-tmpl/npl/en/reservereport.tmpl

28 lines
714 B
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Reserve Report: All Reserves<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="masthead.inc" -->
<!-- TMPL_INCLUDE NAME="intranet-nav.inc" -->
<div id="main">
<table>
<tr><th>Name</th><th>Reserve Date</th><th>Title</th><th>Class</th></tr>
<!-- TMPL_LOOP Name="dataloop" -->
<tr>
<td>
<!-- TMPL_VAR Name="name" -->
</td>
<td>
<!-- TMPL_VAR Name="reservedate" -->
</td>
<td>
<!-- TMPL_VAR Name="title" -->
</td>
<td>
<!-- TMPL_VAR Name="classification" -->
</td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<p><!-- TMPL_VAR Name="count" --></p>
</div>
<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->