|
Lines 3-8
Link Here
|
| 3 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
| 4 |
<title>Koha › Patrons › Pending discharge requests</title> |
4 |
<title>Koha › Patrons › Pending discharge requests</title> |
| 5 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
6 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables_[% KOHA_VERSION %].css" /> |
| 6 |
</head> |
7 |
</head> |
| 7 |
<body id="pat_discharges" class="pat"> |
8 |
<body id="pat_discharges" class="pat"> |
| 8 |
[% INCLUDE 'header.inc' %] |
9 |
[% INCLUDE 'header.inc' %] |
|
Lines 47-52
Link Here
|
| 47 |
|
48 |
|
| 48 |
[% MACRO jsinclude BLOCK %] |
49 |
[% MACRO jsinclude BLOCK %] |
| 49 |
<script type="text/javascript" src="[% interface %]/[% theme %]/js/members-menu_[% KOHA_VERSION %].js"></script> |
50 |
<script type="text/javascript" src="[% interface %]/[% theme %]/js/members-menu_[% KOHA_VERSION %].js"></script> |
|
|
51 |
|
| 52 |
[% INCLUDE 'datatables.inc' %] |
| 53 |
<script> |
| 54 |
$(document).ready(function() { |
| 55 |
$('#pending_updates table').DataTable($.extend(true, {}, dataTablesDefaults, { |
| 56 |
paging: false, |
| 57 |
info: false, |
| 58 |
searching: false, |
| 59 |
order: [], |
| 60 |
columnDefs: [ |
| 61 |
{ targets: -1, orderable: false }, |
| 62 |
], |
| 63 |
})); |
| 64 |
}); |
| 65 |
</script> |
| 50 |
[% END %] |
66 |
[% END %] |
| 51 |
|
67 |
|
| 52 |
[% INCLUDE 'intranet-bottom.inc' %] |
68 |
[% INCLUDE 'intranet-bottom.inc' %] |
| 53 |
- |
|
|