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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_modify_holds.tt (-22 / +18 lines)
Lines 19-43 Link Here
19
    [% INCLUDE modals/batch_modify_hold_errors.inc %]
19
    [% INCLUDE modals/batch_modify_hold_errors.inc %]
20
[% END %]
20
[% END %]
21
21
22
    [% WRAPPER 'sub-header.inc' %]
22
[% WRAPPER 'sub-header.inc' %]
23
    <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
23
    [% WRAPPER breadcrumbs %]
24
        <ol>
24
        [% WRAPPER breadcrumb_item %]
25
            <li>
25
            <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
26
                <a href="/cgi-bin/koha/mainpage.pl">Home</a>
26
        [% END %]
27
            </li>
27
        [% IF ( view == 'form' || view == 'report' ) %]
28
            <li>
28
            [% WRAPPER breadcrumb_item %]
29
                <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
29
                <a href="/cgi-bin/koha/tools/batch_modify_holds.pl">Batch modify holds</a>
30
            </li>
30
            [% END %]
31
            <li>
31
        [% ELSE %]
32
                <a href="#" aria-current="page">Batch modify holds</a>
32
            [% WRAPPER breadcrumb_item bc_active= 1 %]
33
            </li>
33
                <span>Batch modify holds</span>
34
        </ol>
34
            [% END %]
35
    </nav>
35
        [% END %]
36
    [% END %]
36
    [% END #/ WRAPPER breadcrumbs %]
37
[% END #/ WRAPPER sub-header.inc %]
37
38
38
    <div class="main container-fluid">
39
    <div class="main container-fluid">
39
        <div class="row">
40
        <div class="row">
40
            <div class="col-sm-10 col-sm-push-2">
41
            <div class="col-sm-10 order-md-2 order-sm-1">
41
                <main>
42
                <main>
42
43
43
                    <h1>Batch modify holds</h1>
44
                    <h1>Batch modify holds</h1>
Lines 126-136 Link Here
126
                                    </thead>
127
                                    </thead>
127
                                    <tbody>
128
                                    <tbody>
128
                                        [% FOREACH hold IN holds %]
129
                                        [% FOREACH hold IN holds %]
129
                                            [% IF hold.found %]
130
                                            <tr>
130
                                                <tr class="highlighted-row">
131
                                            [% ELSE %]
132
                                                <tr>
133
                                            [% END %]
134
                                                <td><input type="checkbox" name="hold_id" value="[% hold.reserve_id | html %]"/></td>
131
                                                <td><input type="checkbox" name="hold_id" value="[% hold.reserve_id | html %]"/></td>
135
                                                <td>[% hold.expirationdate | $KohaDates %]</td>
132
                                                <td>[% hold.expirationdate | $KohaDates %]</td>
136
                                                <td>[% hold.patron_expiration_date | $KohaDates %]</td>
133
                                                <td>[% hold.patron_expiration_date | $KohaDates %]</td>
137
- 

Return to bug 36135