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 60-66 Link Here
60
                <table id="noticestable">
60
                <table id="noticestable">
61
                    <thead>
61
                    <thead>
62
                        <tr>
62
                        <tr>
63
                            <th class="nosort">&nbsp;</th>
63
                            <th class="NoSort">&nbsp;</th>
64
                            <th>Time created</th>
64
                            <th>Time created</th>
65
                            <th>Notice</th>
65
                            <th>Notice</th>
66
                            <th>Type</th>
66
                            <th>Type</th>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/notices.tt (-4 / +2 lines)
Lines 61-67 Link Here
61
                            <table id="notices">
61
                            <table id="notices">
62
                                <thead>
62
                                <thead>
63
                                    <tr>
63
                                    <tr>
64
                                        <th class="nosort">&nbsp;</th>
64
                                        <th class="NoSort">&nbsp;</th>
65
                                        <th>Time created</th>
65
                                        <th>Time created</th>
66
                                        <th>Patron</th>
66
                                        <th>Patron</th>
67
                                        <th>Notice</th>
67
                                        <th>Notice</th>
Lines 69-75 Link Here
69
                                        <th>Status</th>
69
                                        <th>Status</th>
70
                                        <th>Updated on</th>
70
                                        <th>Updated on</th>
71
                                        <th>Delivery note</th>
71
                                        <th>Delivery note</th>
72
                                        <th class="nosort">Actions</th>
72
                                        <th class="NoSort">Actions</th>
73
                                    </tr>
73
                                    </tr>
74
                                </thead>
74
                                </thead>
75
                                <tbody>
75
                                <tbody>
Lines 306-312 Link Here
306
            $(document).ready(function () {
306
            $(document).ready(function () {
307
                $("#notices").dataTable(
307
                $("#notices").dataTable(
308
                    $.extend(true, {}, dataTablesDefaults, {
308
                    $.extend(true, {}, dataTablesDefaults, {
309
                        aoColumnDefs: [{ bSortable: false, aTargets: ["nosort"] }],
310
                        aaSorting: [[1, "desc"]],
309
                        aaSorting: [[1, "desc"]],
311
                        sPaginationType: "full",
310
                        sPaginationType: "full",
312
                    })
311
                    })
313
- 

Return to bug 33260