1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha › Patrons ›
3 [% IF ( unknowuser ) %]
6 Statistics for [% INCLUDE 'patron-title.inc' %]
9 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
10 [% INCLUDE 'doc-head-close.inc' %]
11 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
12 [% INCLUDE 'datatables-strings.inc' %]
13 <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
14 [% INCLUDE 'calendar.inc' %]
15 <script type="text/javascript">
16 $(document).ready(function() {
17 $("#statistics").dataTable($.extend(true, {}, dataTablesDefaults, {
26 [% INCLUDE 'header.inc' %]
27 [% INCLUDE 'patron-search.inc' %]
29 <div id="breadcrumbs">
30 <a href="/cgi-bin/koha/mainpage.pl">Home</a>
31 › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
32 › [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Statistics for [% firstname %] [% surname %] ([% cardnumber %])[% END %]
35 <div id="doc3" class="yui-t1">
40 [% INCLUDE 'members-toolbar.inc' %]
42 <h3>Statistics for [% UNLESS ( I ) %][% title %] [% firstname %] [% END %] [% surname %] ([% cardnumber %])</h3>
43 [% IF ( datas.size ) %]
44 <table id="statistics">
47 [% FOREACH cn IN column_names %]
56 [% CASE 'homebranch' %]
58 [% CASE 'holdingbranch' %]
65 <th>Total checkouts as of yesterday</th>
66 <th>Today's checkouts</th>
67 <th>Today's checkins</th>
68 <th>Total checkouts</th>
73 [% FOREACH r IN datas %]
83 <td colspan="[% length_keys %]">TOTAL</td>
84 <td>[% count_total_precedent_state %]</td>
85 <td>[% count_total_issues %]</td>
86 <td>[% count_total_issues_returned %]</td>
87 <td>[% count_total_actual_state %]</td>
92 <div class="dialog message">There are no statistics for this patron.</div>
97 [% INCLUDE 'circ-menu.inc' %]
100 [% INCLUDE 'intranet-bottom.inc' %]