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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc (-21 / +22 lines)
Lines 2-28 Link Here
2
[% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
2
[% SET hold_cancellation = AuthorisedValues.GetAuthValueDropbox('HOLD_CANCELLATION') %]
3
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
4
<table class="holds_table">
4
<table class="holds_table">
5
    <tr>
5
    <thead>
6
        <th><input type="checkbox" class="select_hold_all"/></th>
6
        <tr>
7
        <th>Priority</th>
7
            <th><input type="checkbox" class="select_hold_all"/></th>
8
        [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %]
8
            <th>Priority</th>
9
            [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %]
10
                <th>&nbsp;</th>
11
            [% END %]
12
            <th>Patron</th>
13
            <th>Notes</th>
14
            <th>Date</th>
15
            <th>Expiration</th>
16
            <th>Pickup library</th>
17
            <th>Details</th>
18
            [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %]
19
                <th>
20
                    <i class="fa fa-lg fa-rotate-90 fa-fast-forward" title="Toggle set to lowest priority"></i>
21
                </th>
22
            [% END %]
9
            <th>&nbsp;</th>
23
            <th>&nbsp;</th>
10
        [% END %]
24
            <th>&nbsp;</th>
11
        <th>Patron</th>
25
            <th>Print hold/transfer slip</th>
12
        <th>Notes</th>
26
        </tr>
13
        <th>Date</th>
27
    </thead>
14
        <th>Expiration</th>
15
        <th>Pickup library</th>
16
        <th>Details</th>
17
        [% IF ( CAN_user_reserveforothers_modify_holds_priority ) %]
18
            <th>
19
                <i class="fa fa-lg fa-rotate-90 fa-fast-forward" title="Toggle set to lowest priority"></i>
20
            </th>
21
        [% END %]
22
        <th>&nbsp;</th>
23
        <th>&nbsp;</th>
24
        <th>Print hold/transfer slip</th>
25
    </tr>
26
    [%- SET first_priority = 0 -%]
28
    [%- SET first_priority = 0 -%]
27
    [%- SET found_holds = 0 -%]
29
    [%- SET found_holds = 0 -%]
28
    [%- SET last_priority  = holds.last.priority -%]
30
    [%- SET last_priority  = holds.last.priority -%]
29
- 

Return to bug 31902