Lines 1-10
Link Here
|
|
|
1 |
[% USE KohaDates %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › Circulation › Holds awaiting pickup</title> |
3 |
<title>Koha › Circulation › Holds awaiting pickup</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/en/css/datatables.css" /> |
5 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
5 |
<script type="text/javascript" src="[% interface %]/[% theme %]/en/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
6 |
[% INCLUDE 'datatables.inc' %] |
6 |
[% INCLUDE 'datatables-strings.inc' %] |
|
|
7 |
<script type="text/javascript" src="[% interface %]/[% theme %]/en/js/datatables.js"></script> |
8 |
<script type="text/javascript"> |
7 |
<script type="text/javascript"> |
9 |
//<![CDATA[ |
8 |
//<![CDATA[ |
10 |
[% IF (dateformat == 'metric') %] |
9 |
[% IF (dateformat == 'metric') %] |
Lines 17-22
dt_add_type_uk_date();
Link Here
|
17 |
"aoColumnDefs": [ |
16 |
"aoColumnDefs": [ |
18 |
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, |
17 |
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, |
19 |
], |
18 |
], |
|
|
19 |
"aoColumns": [ |
20 |
{ "sType": "title-string" },{ "sType": "anti-the" },null,null,null,null,null |
21 |
], |
20 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
22 |
"aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]], |
21 |
"iDisplayLength": 20, |
23 |
"iDisplayLength": 20, |
22 |
"sPaginationType": "four_button" |
24 |
"sPaginationType": "four_button" |
Lines 151-157
dt_add_type_uk_date();
Link Here
|
151 |
</tr></thead> |
153 |
</tr></thead> |
152 |
<tbody>[% FOREACH overloo IN overloop %] |
154 |
<tbody>[% FOREACH overloo IN overloop %] |
153 |
<tr> |
155 |
<tr> |
154 |
<td><p>[% overloo.waitingdate %]</p></td> |
156 |
<td><p><span title="[% overloo.waitingdate %]">[% overloo.waitingdate | $KohaDates %]</span></p></td> |
155 |
<td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overloo.biblionumber %][% overloo.title |html %] [% overloo.subtitle |html %] |
157 |
<td>[% INCLUDE 'biblio-default-view.inc' biblionumber = overloo.biblionumber %][% overloo.title |html %] [% overloo.subtitle |html %] |
156 |
</a> |
158 |
</a> |
157 |
[% UNLESS ( item_level_itypes ) %][% IF ( overloo.itemtype ) %] (<b>[% overloo.itemtype %]</b>)[% END %][% END %] |
159 |
[% UNLESS ( item_level_itypes ) %][% IF ( overloo.itemtype ) %] (<b>[% overloo.itemtype %]</b>)[% END %][% END %] |
158 |
- |
|
|