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