Lines 9-14
Link Here
|
9 |
[% INCLUDE 'doc-head-open.inc' %] |
9 |
[% INCLUDE 'doc-head-open.inc' %] |
10 |
<title>Koha › Serials › Details for subscription #[% subscriptionid | html %]</title> |
10 |
<title>Koha › Serials › Details for subscription #[% subscriptionid | html %]</title> |
11 |
[% INCLUDE 'doc-head-close.inc' %] |
11 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
12 |
[% Asset.css("css/datatables.css") %] |
12 |
</head> |
13 |
</head> |
13 |
|
14 |
|
14 |
<body id="ser_subscription-detail" class="ser"> |
15 |
<body id="ser_subscription-detail" class="ser"> |
Lines 412-417
Link Here
|
412 |
var CONFIRM_DELETE_SUBSCRIPTION = _("Are you sure you want to delete this subscription?"); |
413 |
var CONFIRM_DELETE_SUBSCRIPTION = _("Are you sure you want to delete this subscription?"); |
413 |
</script> |
414 |
</script> |
414 |
[% Asset.js("js/serials-toolbar.js") | $raw %] |
415 |
[% Asset.js("js/serials-toolbar.js") | $raw %] |
|
|
416 |
[% INCLUDE 'datatables.inc' %] |
415 |
<script type="text/javascript"> |
417 |
<script type="text/javascript"> |
416 |
// the english words used in display purposes |
418 |
// the english words used in display purposes |
417 |
var text = new Array(_("Number"),_("Volume"),_("Issue"),_("Month"),_("Week"),_("Starting with:"),_("Rollover at:"),_("Choose Hemisphere:"),_("Northern"),_("Southern", |
419 |
var text = new Array(_("Number"),_("Volume"),_("Issue"),_("Month"),_("Week"),_("Starting with:"),_("Rollover at:"),_("Choose Hemisphere:"),_("Northern"),_("Southern", |
Lines 422-427
Link Here
|
422 |
popup([% subscriptionid | html %]); |
424 |
popup([% subscriptionid | html %]); |
423 |
return false; |
425 |
return false; |
424 |
}) |
426 |
}) |
|
|
427 |
|
428 |
$("#orders").dataTable($.extend(true, {}, dataTablesDefaults, { |
429 |
'bPaginate': false, |
430 |
'bAutoWidth': false, |
431 |
"aaSorting": [[ 4, "desc" ]], |
432 |
"aoColumnDefs": [ |
433 |
{ "aTargets": "title-string", "sType": "title-string" } |
434 |
] |
435 |
})); |
436 |
|
425 |
}); |
437 |
}); |
426 |
</script> |
438 |
</script> |
427 |
[% END %] |
439 |
[% END %] |
428 |
- |
|
|