Koha/koha-tmpl/intranet-tmpl/prog/en/reservereport.tmpl
2005-08-06 20:19:56 +00:00

25 lines
596 B
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Reserve Report: All Reserves<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<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>
<!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->