Bug 12587 - Improve output of filter information on patrons with the most checkouts...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / reports / reservereport.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Hold Report &rsaquo; All holds</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="rep_reservereport" class="rep">
6 [% INCLUDE 'header.inc' %]
7 [% INCLUDE 'cat-search.inc' %]
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/reports/reports-home.pl">Reports</a> &rsaquo; All holds</div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b">
16
17 <table>
18     <tr><th>Name</th><th>Hold date</th><th>Title</th><th>Class</th></tr>
19         [% FOREACH dataloo IN dataloop %]
20                 <tr>
21                         <td>
22                                 [% dataloo.name %]
23                         </td>
24                         <td>
25                                 [% dataloo.reservedate %]
26                         </td>
27                         <td>
28                                 [% dataloo.title |html %]
29                         </td>
30                         <td>
31                                 [% dataloo.classification %]
32                         </td>
33                 </tr>
34         [% END %]
35 </table>
36 <p>[% count %]</p>
37
38 </div>
39 </div>
40 <div class="yui-b">
41 [% INCLUDE 'reports-menu.inc' %]
42 </div>
43 </div>
44 [% INCLUDE 'intranet-bottom.inc' %]