|
Lines 462-472
Link Here
|
| 462 |
</div> |
462 |
</div> |
| 463 |
<div class="modal-body"> |
463 |
<div class="modal-body"> |
| 464 |
<table class="table_borrowers"> |
464 |
<table class="table_borrowers"> |
| 465 |
[% FOREACH book IN options %] |
465 |
[% FOREACH item IN options %] |
| 466 |
<tr> |
466 |
<tr> |
| 467 |
<td> |
467 |
<td> |
| 468 |
<a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% book.biblionumber | html %]">[% book.title | html %] <i class="fa fa-window-restore"></i></a> |
468 |
<a target="_blank" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item.biblionumber | html %]">[% item.biblio.title | html %] <i class="fa fa-window-restore"></i></a> |
| 469 |
[% book.barcode | html %] |
469 |
[% item.barcode | html %] |
|
|
470 |
[% IF item.itemcallnumber %]Callnumber: [% item.itemcallnumber %][% END %] |
| 471 |
[% IF item.copynumber %]Copy number: [% item.copynumber %][% END %] |
| 472 |
[% IF item.stocknumber %]Inventory number: [% item.stocknumber %][% END %] |
| 473 |
[% IF item.enumchron %]Serial enumeration: [% item.enumchron %][% END %] |
| 470 |
</td> |
474 |
</td> |
| 471 |
<td> |
475 |
<td> |
| 472 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
476 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
|
Lines 478-484
Link Here
|
| 478 |
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" /> |
482 |
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" /> |
| 479 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" /> |
483 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" /> |
| 480 |
<input type="hidden" name="branch" value="[% branch | html %]" /> |
484 |
<input type="hidden" name="branch" value="[% branch | html %]" /> |
| 481 |
<input type="hidden" name="barcode" value="[% book.barcode | html %]" /> |
485 |
<input type="hidden" name="barcode" value="[% item.barcode | html %]" /> |
| 482 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" /> |
486 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" /> |
| 483 |
<input type="hidden" name="auto_renew" value="[% auto_renew | html %]" /> |
487 |
<input type="hidden" name="auto_renew" value="[% auto_renew | html %]" /> |
| 484 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button> |
488 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button> |
| 485 |
- |
|
|