This is a minor change, but affects all templates:
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / reports / reservereport.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Reserve Report &rsaquo; All Reserves</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <table>
6         <tr><th>Name</th><th>Reserve Date</th><th>Title</th><th>Class</th></tr>
7         <!-- TMPL_LOOP Name="dataloop" -->
8                 <tr>
9                         <td>
10                                 <!-- TMPL_VAR Name="name" -->
11                         </td>
12                         <td>
13                                 <!-- TMPL_VAR Name="reservedate" -->
14                         </td>
15                         <td>
16                                 <!-- TMPL_VAR Name="title" -->
17                         </td>
18                         <td>
19                                 <!-- TMPL_VAR Name="classification" -->
20                         </td>
21                 </tr>
22         <!-- /TMPL_LOOP -->
23 </table>
24 <p><!-- TMPL_VAR Name="count" --></p>
25
26
27 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->