Lines 322-327
Link Here
|
322 |
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off"> |
322 |
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off"> |
323 |
<input type="hidden" name="barcode" value="[% itembarcode | html %]" /> |
323 |
<input type="hidden" name="barcode" value="[% itembarcode | html %]" /> |
324 |
<input type="hidden" name="multiple_confirm" value="1" /> |
324 |
<input type="hidden" name="multiple_confirm" value="1" /> |
|
|
325 |
[% FOREACH inputloo IN inputloop %] |
326 |
<input type="hidden" name="ri-[% inputloo.counter | html %]" value="[% inputloo.barcode | html %]" /> |
327 |
<input type="hidden" name="dd-[% inputloo.counter | html %]" value="[% inputloo.duedate | html %]" /> |
328 |
<input type="hidden" name="bn-[% inputloo.counter | html %]" value="[% inputloo.borrowernumber | html %]" /> |
329 |
[% END %] |
325 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, checkin (Y)</button> |
330 |
<button type="submit" class="approve" accesskey="y"><i class="fa fa-check"></i> Yes, checkin (Y)</button> |
326 |
</form> |
331 |
</form> |
327 |
<button type="button" data-dismiss="modal" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't checkin (N)</button> |
332 |
<button type="button" data-dismiss="modal" class="deny" accesskey="n"><i class="fa fa-times"></i> No, don't checkin (N)</button> |
328 |
- |
|
|