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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-4 / +29 lines)
Lines 176-184 $(document).ready(function(){ Link Here
176
                [% ELSE %]
176
                [% ELSE %]
177
                  <td>&nbsp;</td>
177
                  <td>&nbsp;</td>
178
                [% END %]
178
                [% END %]
179
                <td><label for="row[% item_loo.itemnumber | html %]"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item_loo.biblionumber | html %]">[% item_loo.title | html %]</a>[% IF ( item_loo.author ) %], by [% item_loo.author | html %][% END %]</label></td>
179
                <td>
180
                <td class="holds_count"><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]" title="[% IF item_loo.holds %]Holds on this item: [% item_loo.item_holds | html %] / Total holds on this record: [% item_loo.holds | html %] [% ELSE %]Holds on this record: [% item_loo.holds | html %][% END %]">
180
                    <label for="row[% item_loo.itemnumber | html %]">
181
                [% IF item_loo.holds %][% item_loo.item_holds | html %]/[% item_loo.holds | html %][% ELSE %][% item_loo.holds | html %][% END %]</a></td>
181
                        <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item_loo.biblionumber | html %]">
182
                            [% item_loo.title | html %]
183
                        </a>
184
                        [% IF ( item_loo.author ) %], by [% item_loo.author | html %][% END %]
185
                    </label>
186
                </td>
187
                <td class="holds_count">
188
                    [% IF item_loo.holds %]
189
                        [% IF item_loo.item_holds %]
190
                            <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]" title="Holds on this item: [% item_loo.item_holds | html %] / Total holds on this record: [% item_loo.holds | html -%]" >
191
                        [% ELSE %]
192
                            <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]" title="No holds on this item / Total holds on this record: [% item_loo.holds | html -%]" >
193
                        [% END %]
194
                    [% ELSE %]
195
                        [% IF item_loo.holds %]
196
                            <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]" title="Holds on this record: [% item_loo.holds | html -%]" >
197
                        [% ELSE %]
198
                            <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | html %]" title="No holds on this record" >
199
                        [% END %]
200
                    [% END %]
201
                                [% IF item_loo.holds %]
202
                                    [% item_loo.item_holds | html %]/[% item_loo.holds | html %]
203
                                [% ELSE %]
204
                                    [% item_loo.holds | html %]
205
                                [% END %]
206
                            </a>
207
                </td>
182
                [% FOREACH item_valu IN item_loo.item_value %] <td>[% item_valu.field | html %]</td>
208
                [% FOREACH item_valu IN item_loo.item_value %] <td>[% item_valu.field | html %]</td>
183
        [% END %] </tr>
209
        [% END %] </tr>
184
            [% END %]
210
            [% END %]
185
- 

Return to bug 19490