Lines 480-490
Link Here
|
480 |
</div> |
480 |
</div> |
481 |
<div class="modal-body"> |
481 |
<div class="modal-body"> |
482 |
<table class="table_borrowers"> |
482 |
<table class="table_borrowers"> |
483 |
[% FOREACH book IN options %] |
483 |
[% FOREACH item IN options %] |
484 |
<tr> |
484 |
<tr> |
485 |
<td> |
485 |
<td> |
486 |
<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> |
486 |
<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> |
487 |
[% book.barcode | html %] |
487 |
[% item.barcode | html %] |
|
|
488 |
[% IF item.itemcallnumber %]Callnumber: [% item.itemcallnumber %][% END %] |
489 |
[% IF item.copynumber %]Copy number: [% item.copynumber %][% END %] |
490 |
[% IF item.stocknumber %]Inventory number: [% item.stocknumber %][% END %] |
491 |
[% IF item.enumchron %]Serial enumeration: [% item.enumchron %][% END %] |
488 |
</td> |
492 |
</td> |
489 |
<td> |
493 |
<td> |
490 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
494 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
Lines 496-502
Link Here
|
496 |
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" /> |
500 |
<input type="hidden" name="duedatespec" value="[% duedatespec | html %]" /> |
497 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" /> |
501 |
<input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" /> |
498 |
<input type="hidden" name="branch" value="[% branch | html %]" /> |
502 |
<input type="hidden" name="branch" value="[% branch | html %]" /> |
499 |
<input type="hidden" name="barcode" value="[% book.barcode | html %]" /> |
503 |
<input type="hidden" name="barcode" value="[% item.barcode | html %]" /> |
500 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" /> |
504 |
<input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" /> |
501 |
<input type="hidden" name="auto_renew" value="[% auto_renew | html %]" /> |
505 |
<input type="hidden" name="auto_renew" value="[% auto_renew | html %]" /> |
502 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button> |
506 |
<button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button> |
503 |
- |
|
|