Lines 462-477
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 |
<thead> |
466 |
<tr> |
467 |
<th>Title</th> |
468 |
<th>Barcode</th> |
469 |
<th>Call number</th> |
470 |
<th>Collection</th> |
471 |
[% IF ( item_level_itypes ) %]<th>Item type</th>[% END %] |
472 |
<th> </th> |
473 |
</tr> |
474 |
</thead> |
475 |
<tbody> |
465 |
[% FOREACH item IN options %] |
476 |
[% FOREACH item IN options %] |
466 |
<tr> |
477 |
<tr> |
467 |
<td> |
478 |
<td> |
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> |
479 |
<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> |
|
|
480 |
</td> |
481 |
<td> |
469 |
[% item.barcode | html %] |
482 |
[% 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 %] |
474 |
</td> |
483 |
</td> |
|
|
484 |
<td> |
485 |
[% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %] |
486 |
[% IF item.copynumber %]<br /> Copy number: [% item.copynumber | html %][% END %] |
487 |
[% IF item.stocknumber %]<br /> Inventory number: [% item.stocknumber | html %][% END %] |
488 |
[% IF item.enumchron %]<br /> Serial enumeration: [% item.enumchron | html %][% END %] |
489 |
</td> |
490 |
<td> |
491 |
[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %] |
492 |
</td> |
493 |
[% IF ( item_level_itypes ) %] |
494 |
<td> |
495 |
[% ItemTypes.GetDescription( item.itype ) | html %] |
496 |
</td> |
497 |
[% END %] |
475 |
<td> |
498 |
<td> |
476 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
499 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
477 |
[% IF (forceallow) %] |
500 |
[% IF (forceallow) %] |
Lines 490-495
Link Here
|
490 |
</td> |
513 |
</td> |
491 |
</tr> |
514 |
</tr> |
492 |
[% END %] |
515 |
[% END %] |
|
|
516 |
</tbody> |
493 |
</table> |
517 |
</table> |
494 |
</div> <!-- /.modal-body --> |
518 |
</div> <!-- /.modal-body --> |
495 |
<div class="modal-footer"> |
519 |
<div class="modal-footer"> |
496 |
- |
|
|