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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-1 / +1 lines)
Lines 59-65 Link Here
59
                            <table id="noticestable">
59
                            <table id="noticestable">
60
                                <thead>
60
                                <thead>
61
                                    <tr>
61
                                    <tr>
62
                                        <th class="nosort">&nbsp;</th>
62
                                        <th class="NoSort">&nbsp;</th>
63
                                        <th>Time created</th>
63
                                        <th>Time created</th>
64
                                        <th>Notice</th>
64
                                        <th>Notice</th>
65
                                        <th>Type</th>
65
                                        <th>Type</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/notices.tt (-6 / +2 lines)
Lines 63-69 Link Here
63
                        <table id="notices">
63
                        <table id="notices">
64
                            <thead>
64
                            <thead>
65
                                <tr>
65
                                <tr>
66
                                    <th class="nosort">&nbsp;</th>
66
                                    <th class="NoSort">&nbsp;</th>
67
                                    <th>Time created</th>
67
                                    <th>Time created</th>
68
                                    <th>Patron</th>
68
                                    <th>Patron</th>
69
                                    <th>Notice</th>
69
                                    <th>Notice</th>
Lines 71-77 Link Here
71
                                    <th>Status</th>
71
                                    <th>Status</th>
72
                                    <th>Updated on</th>
72
                                    <th>Updated on</th>
73
                                    <th>Delivery note</th>
73
                                    <th>Delivery note</th>
74
                                    <th class="nosort">Actions</th>
74
                                    <th class="NoSort">Actions</th>
75
                                </tr>
75
                                </tr>
76
                            </thead>
76
                            </thead>
77
                            <tbody>
77
                            <tbody>
Lines 275-283 Link Here
275
    <script>
275
    <script>
276
        $(document).ready(function() {
276
        $(document).ready(function() {
277
            $("#notices").dataTable($.extend(true, {}, dataTablesDefaults, {
277
            $("#notices").dataTable($.extend(true, {}, dataTablesDefaults, {
278
                "aoColumnDefs": [
279
                    { 'bSortable': false, 'aTargets': [ 'nosort' ] }
280
                ],
281
                "aaSorting": [[1, "desc" ]],
278
                "aaSorting": [[1, "desc" ]],
282
                "sPaginationType": "full"
279
                "sPaginationType": "full"
283
            }));
280
            }));
284
- 

Return to bug 33260