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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/discharges.tt (-1 / +16 lines)
Lines 3-8 Link Here
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Patrons &rsaquo; Pending discharge requests</title>
4
<title>Koha &rsaquo; Patrons &rsaquo; 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 45-50 Link Here
45
46
46
[% MACRO jsinclude BLOCK %]
47
[% MACRO jsinclude BLOCK %]
47
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/members-menu_[% KOHA_VERSION %].js"></script>
48
    <script type="text/javascript" src="[% interface %]/[% theme %]/js/members-menu_[% KOHA_VERSION %].js"></script>
49
50
    [% INCLUDE 'datatables.inc' %]
51
    <script>
52
        $(document).ready(function() {
53
            $('#pending_updates table').DataTable($.extend(true, {}, dataTablesDefaults, {
54
                paging: false,
55
                info: false,
56
                searching: false,
57
                order: [],
58
                columnDefs: [
59
                    { targets: -1, orderable: false },
60
                ],
61
            }));
62
        });
63
    </script>
48
[% END %]
64
[% END %]
49
65
50
[% INCLUDE 'intranet-bottom.inc' %]
66
[% INCLUDE 'intranet-bottom.inc' %]
51
- 

Return to bug 20524