New basic page structure implemented for circ pages: global main menu in the header...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / stats.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Statistics</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>  &rsaquo; Statistics</div>
10
11 <div id="doc3" class="yui-t2">
12    
13    <div id="bd">
14         <div id="yui-main">
15         <div class="yui-b"><div class="yui-g">
16
17     <!-- TMPL_IF NAME="notime" -->
18         <h1>Display statistics for:</h1>
19         <ul>
20             <li><a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">yesterday</a></li>
21             <li><a href="/cgi-bin/koha/circ/stats.pl?time=today">today</a></li>
22     <!-- TMPL_ELSE -->
23         <!-- TMPL_IF NAME="loop1" -->
24         <table>
25         <caption>Statistics</caption>
26                 <tr>
27                         <th>Name</th>
28                         <th>Type</th>
29                         <th>Date/time</th>
30                         <th>Amount</th>
31                         <th>Library</th>
32                 <tr>
33                 <!-- TMPL_LOOP name="loop1" -->
34                 <tr>
35                         <td><!-- TMPL_VAR NAME="name" --></td>
36                         <td><!-- TMPL_VAR NAME="type" --></td>
37                         <td><!-- TMPL_VAR NAME="time" --></td>
38                         <td><!-- TMPL_VAR NAME="amount" --></td>
39                         <td><!-- TMPL_VAR NAME="branch" --></td>
40                 </tr>
41                 <!-- /TMPL_LOOP -->
42                 </table>
43                 <p>Total paid: <!-- TMPL_VAR NAME="total" --><br />Total written off: <!-- TMPL_VAR NAME="totalw" --></p>
44         <!-- TMPL_ELSE -->
45         <h3>No statistics to report</h3>
46         <!-- /TMPL_IF -->
47         
48     <!-- /TMPL_IF -->
49 </div>
50 </div>
51 </div>
52
53 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
54 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->