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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc (-6 / +5 lines)
Lines 5-16 Link Here
5
    <thead>
5
    <thead>
6
        <tr>
6
        <tr>
7
            <th class="NoSort"><input type="checkbox" class="select_hold_all"/></th>
7
            <th class="NoSort"><input type="checkbox" class="select_hold_all"/></th>
8
            <th>Waiting since</th>
8
            <th data-type="@data-sort">Waiting since</th>
9
            <th>Date hold placed</th>
9
            <th data-type="@data-sort">Date hold placed</th>
10
          [% IF table_name == 'holdscr' %]
10
          [% IF table_name == 'holdscr' %]
11
            <th>Date cancellation requested</th>
11
            <th data-type="@data-sort">Date cancellation requested</th>
12
          [% END %]
12
          [% END %]
13
            <th>Expiration date</th>
13
            <th data-type="@data-sort">Expiration date</th>
14
            <th class="anti-the">Title</th>
14
            <th class="anti-the">Title</th>
15
            <th>Patron</th>
15
            <th>Patron</th>
16
            <th>Home library</th>
16
            <th>Home library</th>
Lines 31-37 Link Here
31
              [% IF table_name == 'holdscr' %]
31
              [% IF table_name == 'holdscr' %]
32
                <td>
32
                <td>
33
                [% FOREACH cancellation_request IN reserveloo.cancellation_requests %]
33
                [% FOREACH cancellation_request IN reserveloo.cancellation_requests %]
34
                    <span>[% cancellation_request.creation_date | $KohaDates %]</span>
34
                    <span data-order="[% cancellation_request.creation_date | html %]">[% cancellation_request.creation_date | $KohaDates %]</span>
35
                [% END %]
35
                [% END %]
36
                </td>
36
                </td>
37
              [% END %]
37
              [% END %]
38
- 

Return to bug 32503