rel_3_0 moved to HEAD (introducing new files)
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / circ / stats.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Statistics<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!--TMPL_INCLUDE NAME="menus.inc" -->
3 <!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
4
5     <!-- TMPL_IF NAME="notime" -->
6         <h1>Display stats for</h1>
7         <ul>
8             <li><a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">yesterday</a></li>
9             <li><a href="/cgi-bin/koha/circ/stats.pl?time=today">today</a></li>
10     <!-- TMPL_ELSE -->
11         <!-- TMPL_IF NAME="loop1" -->
12         <table>
13         <caption>Statistics</caption>
14                 <tr>
15                         <th>Name</th>
16                         <th>Type</th>
17                         <th>Date/time</th>
18                         <th>Amount</th>
19                         <th>Branch</th>
20                 <tr>
21                 <!-- TMPL_LOOP name="loop1" -->
22                 <tr>
23                         <td><!-- TMPL_VAR NAME="name" --></td>
24                         <td><!-- TMPL_VAR NAME="type" --></td>
25                         <td><!-- TMPL_VAR NAME="time" --></td>
26                         <td><!-- TMPL_VAR NAME="amount" --></td>
27                         <td><!-- TMPL_VAR NAME="branch" --></td>
28                 </tr>
29                 <!-- /TMPL_LOOP -->
30                 </table>
31                 <p>Total paid: <!-- TMPL_VAR NAME="total" --><br>Total written off: <!-- TMPL_VAR NAME="totalw" --></p>
32         <!-- TMPL_ELSE -->
33         <h3>No statistics to report</h3>
34         <!-- /TMPL_IF -->
35         
36     <!-- /TMPL_IF -->
37 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->