2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Circulation History for [% INCLUDE 'patron-title.inc' %]</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" />
6 <script type="text/javascript" src="[% interface %]/[% theme %]/en/lib/jquery/plugins/jquery.dataTables.min.js"></script>
7 [% INCLUDE 'datatables-strings.inc' %]
8 <script type="text/javascript" src="[% interface %]/[% theme %]/en/js/datatables.js"></script>
9 <script type="text/javascript" id="js">
12 $(document).ready(function() {
13 [% IF (dateformat == 'metric') %]
14 dt_add_type_uk_date();
16 $("#table_readingrec").dataTable($.extend(true, {}, dataTablesDefaults, {
17 "sPaginationType": "four_button",
21 { "sType": "anti-the" },
29 { "sType": "title-string" }
36 <body id="pat_readingrec" class="pat">
37 [% INCLUDE 'header.inc' %]
38 [% INCLUDE 'patron-search.inc' %]
40 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> › Circulation history for [% INCLUDE 'patron-title.inc' %]</div>
42 <div id="doc3" class="yui-t2">
47 [% INCLUDE 'members-toolbar.inc' %]
48 <h1>Circulation history</h1>
50 <form action="/cgi-bin/koha/members/readingrec.pl" method="get"><input type="hidden" name="borrowernumber" id="borrowernumber" value="[% borrowernumber %]" /></form>
53 <table id="table_readingrec">
60 <th>Number of renewals</th>
61 <th>Checked out on</th>
62 <th>Checked out from</th>
66 [% FOREACH issue IN loop_reading %]
67 [% IF issue.returndate %]<tr>[% ELSE %]<tr class="onissue">[% END %]
69 [% issue.issuestimestamp | $KohaDates %]
71 <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% issue.biblionumber %]">[% issue.title |html %]</a></td>
73 <td>[% issue.author %]</td>
76 [% IF issue.classification %]
77 [% issue.classification %]
79 [% issue.itemcallnumber %]
83 <td>[% issue.barcode %]</td>
86 [% issue.renewals %]</td>
88 [% issue.issuedate | $KohaDates %]</td>
90 [% issue.issuingbranch %]</td>
91 <td>[% IF issue.date_due %]
92 [% issue.date_due | $KohaDates %]
93 [% ELSE %] [% END %]</td>
95 [% IF issue.returndate %]
96 <span title="[% issue.returndate %]">[% issue.returndate | $KohaDates %]</span>
98 <span title="Checked Out"><small>Checked Out</small></span>
105 <div class="dialog message">This patron has no circulation history.</div>
111 [% INCLUDE 'circ-menu.inc' %]
114 [% INCLUDE 'intranet-bottom.inc' %]