View | Details | Raw Unified | Return to bug 20726
Collapse All | Expand All

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

Return to bug 20726