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 129-134 $(document).ready(function () { Link Here
129
129
130
    $("#recalls-table").kohaTable({
130
    $("#recalls-table").kohaTable({
131
        columnDefs: [{ type: "title-string", targets: ["title-string"] }],
131
        columnDefs: [{ type: "title-string", targets: ["title-string"] }],
132
        order: [[1, "asc"]],
132
        pagingType: "full_numbers",
133
        pagingType: "full_numbers",
133
    });
134
    });
134
135
135
- 

Return to bug 38984