Merge remote branch 'kc/new/enh/bug_4820' into kcmaster
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / bookcount.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Circulation Statistics for <!-- TMPL_VAR Name="title" escape="html" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript">
5 $(document).ready(function(){
6     $(".striped tr:even").addClass("highlight");
7     $("tr.mybranch td").css("background-color", "#CFE7FF");
8 });
9 </script>
10 </head>
11 <body>
12 <!-- TMPL_INCLUDE NAME="header.inc" -->
13 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
14
15 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> &rsaquo; Circulation Statistics for <!-- TMPL_VAR Name="title" escape="html" --></div>
16
17 <div id="doc3" class="yui-t2">
18    
19    <div id="bd">
20         <div id="yui-main">
21         <div class="yui-b">
22
23 <h2>
24 <!-- TMPL_VAR NAME="title" ESCAPE="html" --> <!-- TMPL_IF NAME="author" --> by <!-- TMPL_VAR NAME="author" ESCAPE="html" --><!-- /TMPL_IF --></h2>
25 <h3>Barcode <!-- TMPL_VAR NAME="barcode" --></h3>
26 <table>
27                 <tr><th>Home Library</th><th>Current Library</th><th>Date arrived<br />at current library </th><th>Number of checkouts<br />since last transfer</th></tr>
28                 
29                 <tr><td><!-- TMPL_VAR NAME="homebranch" --></td>
30             <td><!-- TMPL_VAR NAME="holdingbranch" --></td>
31             <td><!-- TMPL_VAR NAME="lastdate" --></td>
32             <td><!-- TMPL_VAR NAME="count" --></td>
33         </tr>
34 </table>
35 <table class="striped">
36     <tr>
37         <th>Library</th>
38         <th>No. of times checked out</th>
39         <th>Last Seen</th>
40     </tr>
41     <!-- TMPL_LOOP NAME="branchloop" -->
42     <!-- TMPL_IF NAME="selected" -->
43         <tr class="mybranch">
44     <!-- TMPL_ELSE -->
45         <tr>
46     <!-- /TMPL_IF -->
47             <td><!-- TMPL_VAR NAME="branchname" --></td>
48             <td><!-- TMPL_VAR NAME="issues" --></td>
49             <td><!-- TMPL_IF NAME="seen" -->
50                     <span style="display:none;"><!-- TMPL_VAR NAME="seen" --><!-- TMPL_VAR NAME="seentime" --></span>
51                     <!-- invisible span for eventual use by tablesorter -->
52                     <!-- TMPL_VAR NAME="seentime" DEFAULT="??:??" --> <!-- TMPL_VAR NAME="seen" --> 
53                 <!-- TMPL_ELSE -->Never
54                 <!-- /TMPL_IF -->
55             </td>
56         </tr>
57     <!-- /TMPL_LOOP -->
58 </table>
59
60 </div>
61 </div>
62 <div class="yui-b">
63 <!-- TMPL_INCLUDE NAME="biblio-view-menu.inc" -->
64 </div>
65 </div>
66 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->