Koha/koha-tmpl/intranet-tmpl/prog/en/modules/circ/stats.tmpl
2007-08-30 15:50:54 -05:00

52 lines
No EOL
1.5 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Statistics</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="menu-circ.inc"-->
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b"><div class="yui-g">
<!-- TMPL_IF NAME="notime" -->
<h1>Display statistics for:</h1>
<ul>
<li><a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">yesterday</a></li>
<li><a href="/cgi-bin/koha/circ/stats.pl?time=today">today</a></li>
<!-- TMPL_ELSE -->
<!-- TMPL_IF NAME="loop1" -->
<table>
<caption>Statistics</caption>
<tr>
<th>Name</th>
<th>Type</th>
<th>Date/time</th>
<th>Amount</th>
<th>Library</th>
<tr>
<!-- TMPL_LOOP name="loop1" -->
<tr>
<td><!-- TMPL_VAR NAME="name" --></td>
<td><!-- TMPL_VAR NAME="type" --></td>
<td><!-- TMPL_VAR NAME="time" --></td>
<td><!-- TMPL_VAR NAME="amount" --></td>
<td><!-- TMPL_VAR NAME="branch" --></td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<p>Total paid: <!-- TMPL_VAR NAME="total" --><br />Total written off: <!-- TMPL_VAR NAME="totalw" --></p>
<!-- TMPL_ELSE -->
<h3>No statistics to report</h3>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
</div>
</div>
</div>
<!-- TMPL_INCLUDE NAME="mainmenu.inc" -->
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->