Lines 76-81
Link Here
|
76 |
<form name="f" action="batchMod.pl" method="post"> |
76 |
<form name="f" action="batchMod.pl" method="post"> |
77 |
<input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber | html %]" /> |
77 |
<input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber | html %]" /> |
78 |
<input type="hidden" name="op" value="[% op | html %]" /> |
78 |
<input type="hidden" name="op" value="[% op | html %]" /> |
|
|
79 |
<input type="hidden" name="searchid" value="[% searchid | html %]" /> |
79 |
<input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" /> |
80 |
<input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" /> |
80 |
<input type="hidden" name="completedJobID" id="completedJobID" value="" /> |
81 |
<input type="hidden" name="completedJobID" id="completedJobID" value="" /> |
81 |
<input type="hidden" name="src" id="src" value="[% src | html %]" /> |
82 |
<input type="hidden" name="src" id="src" value="[% src | html %]" /> |
Lines 221-229
Link Here
|
221 |
[% IF delete_records %] <p>[% deleted_records | html %] record(s) deleted.</p> [% END %] |
222 |
[% IF delete_records %] <p>[% deleted_records | html %] record(s) deleted.</p> [% END %] |
222 |
[% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%] |
223 |
[% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%] |
223 |
[% IF biblio_deleted %] |
224 |
[% IF biblio_deleted %] |
|
|
225 |
[% IF searchid %] |
226 |
<div id="previous_search_link"></div> |
227 |
[% END %] |
224 |
<a href="/cgi-bin/koha/cataloguing/addbooks.pl">Return to the cataloging module</a> |
228 |
<a href="/cgi-bin/koha/cataloguing/addbooks.pl">Return to the cataloging module</a> |
225 |
[% ELSE %] |
229 |
[% ELSE %] |
226 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]">Return to the record</a> |
230 |
[% IF searchid %] |
|
|
231 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]&searchid=[% searchid | uri %]">Return to the record</a> |
232 |
[% ELSE %] |
233 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]">Return to the record</a> |
234 |
[% END %] |
227 |
[% END %] |
235 |
[% END %] |
228 |
[% ELSIF src %] |
236 |
[% ELSIF src %] |
229 |
<a href="[% src | url %]">Return to where you were</a> |
237 |
<a href="[% src | url %]">Return to where you were</a> |
Lines 289-294
Link Here
|
289 |
[% INCLUDE 'datatables.inc' %] |
297 |
[% INCLUDE 'datatables.inc' %] |
290 |
[% Asset.js("js/pages/batchMod.js") | $raw %] |
298 |
[% Asset.js("js/pages/batchMod.js") | $raw %] |
291 |
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] |
299 |
[% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %] |
|
|
300 |
[% Asset.js("js/browser.js") | $raw %] |
292 |
<script type="text/javascript"> |
301 |
<script type="text/javascript"> |
293 |
// Prepare array of all column headers, incrementing each index by |
302 |
// Prepare array of all column headers, incrementing each index by |
294 |
// two to accommodate control and title columns |
303 |
// two to accommodate control and title columns |
Lines 301-306
Link Here
|
301 |
return submitBackgroundJob(this.form); |
310 |
return submitBackgroundJob(this.form); |
302 |
}); |
311 |
}); |
303 |
}); |
312 |
}); |
|
|
313 |
|
314 |
[% IF searchid %] |
315 |
browser = KOHA.browser('[% searchid | html %]'); |
316 |
browser.show_back_link(); |
317 |
[% END %] |
304 |
</script> |
318 |
</script> |
305 |
[% END %] |
319 |
[% END %] |
306 |
|
320 |
|