Corrections to make markup more valid (quoting attributes, encoding amersands, etc.)
[koha.git] / koha-tmpl / intranet-tmpl / npl / en / reservereport.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha -- Reserve Report: All Reserves<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="masthead.inc" -->
3 <!-- TMPL_INCLUDE NAME="intranet-nav.inc" -->
4
5 <div id="main">
6 <table>
7         <tr><th>Name</th><th>Reserve Date</th><th>Title</th><th>Class</th></tr>
8         <!-- TMPL_LOOP Name="dataloop" -->
9                 <tr>
10                         <td>
11                                 <!-- TMPL_VAR Name="name" -->
12                         </td>
13                         <td>
14                                 <!-- TMPL_VAR Name="reservedate" -->
15                         </td>
16                         <td>
17                                 <!-- TMPL_VAR Name="title" -->
18                         </td>
19                         <td>
20                                 <!-- TMPL_VAR Name="classification" -->
21                         </td>
22                 </tr>
23         <!-- /TMPL_LOOP -->
24 </table>
25 <p><!-- TMPL_VAR Name="count" --></p>
26 </div>
27
28 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->