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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt (-1 / +2 lines)
Lines 97-102 Link Here
97
            <tr>
97
            <tr>
98
                [% IF ( show ) %]<th>&nbsp;</th>[% END %]
98
                [% IF ( show ) %]<th>&nbsp;</th>[% END %]
99
                <th class="anti-the">Title</th>
99
                <th class="anti-the">Title</th>
100
                <th class="holds_count" title="Item holds / Total holds">Holds</th>
100
                [% FOREACH item_header_loo IN item_header_loop %]
101
                [% FOREACH item_header_loo IN item_header_loop %]
101
                <th> [% item_header_loo.header_value | html %] </th>
102
                <th> [% item_header_loo.header_value | html %] </th>
102
                [% END %]
103
                [% END %]
Lines 105-110 Link Here
105
            <tbody>
106
            <tbody>
106
            [% FOREACH item_loo IN item_loop %] <tr> [% IF ( show ) %][% IF ( item_loo.nomod ) %] <td class="error">Cannot edit</td>[% ELSE %]<td><input type="checkbox" name="itemnumber" value="[% item_loo.itemnumber | html %]" id="row[% item_loo.itemnumber | html %]" checked="checked" /></td>[% END %][% END %]
107
            [% FOREACH item_loo IN item_loop %] <tr> [% IF ( show ) %][% IF ( item_loo.nomod ) %] <td class="error">Cannot edit</td>[% ELSE %]<td><input type="checkbox" name="itemnumber" value="[% item_loo.itemnumber | html %]" id="row[% item_loo.itemnumber | html %]" checked="checked" /></td>[% END %][% END %]
107
            <td><label for="row[% item_loo.itemnumber | html %]"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item_loo.biblionumber | uri %]">[% item_loo.title | html %]</a>[% IF ( item_loo.author ) %], by [% item_loo.author | html %][% END %]</label></td>
108
            <td><label for="row[% item_loo.itemnumber | html %]"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item_loo.biblionumber | uri %]">[% item_loo.title | html %]</a>[% IF ( item_loo.author ) %], by [% item_loo.author | html %][% END %]</label></td>
109
            <td class="holds_count"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]">[% IF item_loo.holds %][% item_loo.item_holds | html %]/[% item_loo.holds | html %][% ELSE %][% item_loo.holds | html %][% END %]</a></td>
108
            [% FOREACH item_valu IN item_loo.item_value %] <td>[% item_valu.field | html %]</td>
110
            [% FOREACH item_valu IN item_loo.item_value %] <td>[% item_valu.field | html %]</td>
109
                    [% END %] </tr>
111
                    [% END %] </tr>
110
            [% END %]
112
            [% END %]
111
- 

Return to bug 22914