|
Lines 1-6
Link Here
|
| 1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
| 2 |
<title>Koha › Catalog › Checkout History for [% title |html %]</title> |
2 |
<title>Koha › Catalog › Checkout History for [% title |html %]</title> |
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
4 |
<link rel="stylesheet" href="[% themelang %]/css/datatables.css" /> |
| 5 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
| 6 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
| 7 |
[% INCLUDE 'datatables-strings.inc' %] |
| 8 |
<script type="text/javascript" id="js"> |
| 9 |
$(document).ready(function() { |
| 10 |
$("#table_issues").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 11 |
// maybe some defaults? |
| 12 |
}) |
| 13 |
); |
| 14 |
}); </script> |
| 15 |
|
| 4 |
</head> |
16 |
</head> |
| 5 |
<body id="catalog_issuehistory" class="catalog"> |
17 |
<body id="catalog_issuehistory" class="catalog"> |
| 6 |
|
18 |
|
|
Lines 21-27
Link Here
|
| 21 |
<div class="searchresults"> |
33 |
<div class="searchresults"> |
| 22 |
[% IF ( issues ) %] |
34 |
[% IF ( issues ) %] |
| 23 |
<h4>Checked out [% total %] times</h4> |
35 |
<h4>Checked out [% total %] times</h4> |
| 24 |
<table> |
36 |
<table id="table_issues"> |
| 25 |
<thead><tr> |
37 |
<thead><tr> |
| 26 |
<th>Patron</th> |
38 |
<th>Patron</th> |
| 27 |
<th>Barcode</th> |
39 |
<th>Barcode</th> |
| 28 |
- |
|
|