memberentryC.tmpl:add test to modify link name
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / reservereport.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Reserve Report: All Reserves<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2
3 <table>
4         <tr><th>Name</th><th>Reserve Date</th><th>Title</th><th>Class</th></tr>
5         <!-- TMPL_LOOP Name="dataloop" -->
6                 <tr>
7                         <td>
8                                 <!-- TMPL_VAR Name="name" -->
9                         </td>
10                         <td>
11                                 <!-- TMPL_VAR Name="reservedate" -->
12                         </td>
13                         <td>
14                                 <!-- TMPL_VAR Name="title" -->
15                         </td>
16                         <td>
17                                 <!-- TMPL_VAR Name="classification" -->
18                         </td>
19                 </tr>
20         <!-- /TMPL_LOOP -->
21 </table>
22 <p><!-- TMPL_VAR Name="count" --></p>
23
24
25 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->