first go at moving templates to a modules/ dir
[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 <!--TMPL_INCLUDE NAME="menus.inc" -->
5 <!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
6
7     <!-- TMPL_IF NAME="notime" -->
8         <h1>Display statistics for:</h1>
9         <ul>
10             <li><a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">yesterday</a></li>
11             <li><a href="/cgi-bin/koha/circ/stats.pl?time=today">today</a></li>
12     <!-- TMPL_ELSE -->
13         <!-- TMPL_IF NAME="loop1" -->
14         <table>
15         <caption>Statistics</caption>
16                 <tr>
17                         <th>Name</th>
18                         <th>Type</th>
19                         <th>Date/time</th>
20                         <th>Amount</th>
21                         <th>Library</th>
22                 <tr>
23                 <!-- TMPL_LOOP name="loop1" -->
24                 <tr>
25                         <td><!-- TMPL_VAR NAME="name" --></td>
26                         <td><!-- TMPL_VAR NAME="type" --></td>
27                         <td><!-- TMPL_VAR NAME="time" --></td>
28                         <td><!-- TMPL_VAR NAME="amount" --></td>
29                         <td><!-- TMPL_VAR NAME="branch" --></td>
30                 </tr>
31                 <!-- /TMPL_LOOP -->
32                 </table>
33                 <p>Total paid: <!-- TMPL_VAR NAME="total" --><br>Total written off: <!-- TMPL_VAR NAME="totalw" --></p>
34         <!-- TMPL_ELSE -->
35         <h3>No statistics to report</h3>
36         <!-- /TMPL_IF -->
37         
38     <!-- /TMPL_IF -->
39 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->