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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/recalls.inc (-2 / +2 lines)
Lines 4-10 Link Here
4
    <table id="recalls-table">
4
    <table id="recalls-table">
5
        <thead>
5
        <thead>
6
            <tr>
6
            <tr>
7
                [% IF checkboxes %]<th class="recall-checkbox nosort">&nbsp;</th>[% END %]
7
                [% IF checkboxes %]<th class="recall-checkbox NoSort">&nbsp;</th>[% END %]
8
                <th class="recall-title anti-the">Title</th>
8
                <th class="recall-title anti-the">Title</th>
9
                [% UNLESS specific_patron %]<th class="recall-patron">Requested by</th>[% END %]
9
                [% UNLESS specific_patron %]<th class="recall-patron">Requested by</th>[% END %]
10
                <th class="recall-date">Placed on</th>
10
                <th class="recall-date">Placed on</th>
Lines 12-18 Link Here
12
                <th class="recall-branch">Pickup location</th>
12
                <th class="recall-branch">Pickup location</th>
13
                <th class="recall-status">Status</th>
13
                <th class="recall-status">Status</th>
14
                [% UNLESS viewing_old %]<th class="recall-duedate">Due date</th>[% END %]
14
                [% UNLESS viewing_old %]<th class="recall-duedate">Due date</th>[% END %]
15
                [% UNLESS viewing_old %]<th class="recall-actions nosort">&nbsp;</th>[% END %]
15
                [% UNLESS viewing_old %]<th class="recall-actions NoSort">&nbsp;</th>[% END %]
16
            </tr>
16
            </tr>
17
        </thead>
17
        </thead>
18
18
(-)a/koha-tmpl/intranet-tmpl/prog/js/recalls.js (-1 / +1 lines)
Lines 106-111 $(document).ready(function() { Link Here
106
            columnDefs: [
106
            columnDefs: [
107
                { type: "title-string", targets: ["title-string"] },
107
                { type: "title-string", targets: ["title-string"] },
108
            ],
108
            ],
109
            order: [[1, "asc"]],
109
            pagingType: "full_numbers",
110
            pagingType: "full_numbers",
110
        });
111
        });
111
112
112
- 

Return to bug 38984