|
Lines 446-462
Link Here
|
| 446 |
</div> |
446 |
</div> |
| 447 |
<div class="modal-body"> |
447 |
<div class="modal-body"> |
| 448 |
<table class="table_borrowers"> |
448 |
<table class="table_borrowers"> |
|
|
449 |
<thead> |
| 450 |
<tr> |
| 451 |
<th>Title</th> |
| 452 |
<th>Barcode</th> |
| 453 |
<th>Call number</th> |
| 454 |
<th>Collection</th> |
| 455 |
[% IF ( item_level_itypes ) %]<th>Item type</th>[% END %] |
| 456 |
<th> </th> |
| 457 |
</tr> |
| 458 |
</thead> |
| 459 |
<tbody> |
| 449 |
[% FOREACH item IN options %] |
460 |
[% FOREACH item IN options %] |
| 450 |
<tr> |
461 |
<tr> |
| 451 |
<td> |
462 |
<td> |
| 452 |
<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> |
463 |
<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> |
|
|
464 |
</td> |
| 465 |
<td> |
| 453 |
[% item.barcode | html %] |
466 |
[% item.barcode | html %] |
| 454 |
[% IF item.itemcallnumber %]Callnumber: [% item.itemcallnumber %][% END %] |
|
|
| 455 |
[% IF item.copynumber %]Copy number: [% item.copynumber %][% END %] |
| 456 |
[% IF item.stocknumber %]Inventory number: [% item.stocknumber %][% END %] |
| 457 |
[% IF item.enumchron %]Serial enumeration: [% item.enumchron %][% END %] |
| 458 |
</td> |
467 |
</td> |
| 459 |
<td> |
468 |
<td> |
|
|
469 |
[% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %] |
| 470 |
[% IF item.copynumber %]<br /> Copy number: [% item.copynumber | html %][% END %] |
| 471 |
[% IF item.stocknumber %]<br /> Inventory number: [% item.stocknumber | html %][% END %] |
| 472 |
[% IF item.enumchron %]<br /> Serial enumeration: [% item.enumchron | html %][% END %] |
| 473 |
</td> |
| 474 |
<td> |
| 475 |
[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %] |
| 476 |
</td> |
| 477 |
[% IF ( item_level_itypes ) %] |
| 478 |
<td> |
| 479 |
[% ItemTypes.GetDescription( item.itype ) | html %] |
| 480 |
</td> |
| 481 |
[% END %] |
| 482 |
<td> |
| 460 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
483 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
| 461 |
[% IF (forceallow) %] |
484 |
[% IF (forceallow) %] |
| 462 |
<input type="hidden" name="forceallow" value="1"> |
485 |
<input type="hidden" name="forceallow" value="1"> |
|
Lines 474-479
Link Here
|
| 474 |
</td> |
497 |
</td> |
| 475 |
</tr> |
498 |
</tr> |
| 476 |
[% END %] |
499 |
[% END %] |
|
|
500 |
</tbody> |
| 477 |
</table> |
501 |
</table> |
| 478 |
</div> <!-- /.modal-body --> |
502 |
</div> <!-- /.modal-body --> |
| 479 |
<div class="modal-footer"> |
503 |
<div class="modal-footer"> |
| 480 |
- |
|
|