Koha/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reservereport.tt
Katrin Fischer 55756fc0fb [SIGNED-OFF]Bug 2780 - Capitalize strings consistently (reports)
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
2012-04-10 10:16:05 +02:00

44 lines
No EOL
966 B
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Hold Report &rsaquo; All holds</title>
[% INCLUDE 'doc-head-close.inc' %]
</head>
<body id="rep_reservereport" class="rep">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'cat-search.inc' %]
<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>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<table>
<tr><th>Name</th><th>Hold date</th><th>Title</th><th>Class</th></tr>
[% FOREACH dataloo IN dataloop %]
<tr>
<td>
[% dataloo.name %]
</td>
<td>
[% dataloo.reservedate %]
</td>
<td>
[% dataloo.title |html %]
</td>
<td>
[% dataloo.classification %]
</td>
</tr>
[% END %]
</table>
<p>[% count %]</p>
</div>
</div>
<div class="yui-b">
[% INCLUDE 'reports-menu.inc' %]
</div>
</div>
[% INCLUDE 'intranet-bottom.inc' %]