Lines 480-495
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 |
<thead> |
484 |
<tr> |
485 |
<th>Title</th> |
486 |
<th>Barcode</th> |
487 |
<th>Call number</th> |
488 |
<th>Collection</th> |
489 |
[% IF ( item_level_itypes ) %]<th>Item type</th>[% END %] |
490 |
<th> </th> |
491 |
</tr> |
492 |
</thead> |
493 |
<tbody> |
483 |
[% FOREACH item IN options %] |
494 |
[% FOREACH item IN options %] |
484 |
<tr> |
495 |
<tr> |
485 |
<td> |
496 |
<td> |
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> |
497 |
<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> |
|
|
498 |
</td> |
499 |
<td> |
487 |
[% item.barcode | html %] |
500 |
[% 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 %] |
492 |
</td> |
501 |
</td> |
|
|
502 |
<td> |
503 |
[% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %] |
504 |
[% IF item.copynumber %]<br /> Copy number: [% item.copynumber | html %][% END %] |
505 |
[% IF item.stocknumber %]<br /> Inventory number: [% item.stocknumber | html %][% END %] |
506 |
[% IF item.enumchron %]<br /> Serial enumeration: [% item.enumchron | html %][% END %] |
507 |
</td> |
508 |
<td> |
509 |
[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %] |
510 |
</td> |
511 |
[% IF ( item_level_itypes ) %] |
512 |
<td> |
513 |
[% ItemTypes.GetDescription( item.itype ) | html %] |
514 |
</td> |
515 |
[% END %] |
493 |
<td> |
516 |
<td> |
494 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
517 |
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off"> |
495 |
[% IF (forceallow) %] |
518 |
[% IF (forceallow) %] |
Lines 508-513
Link Here
|
508 |
</td> |
531 |
</td> |
509 |
</tr> |
532 |
</tr> |
510 |
[% END %] |
533 |
[% END %] |
|
|
534 |
</tbody> |
511 |
</table> |
535 |
</table> |
512 |
</div> <!-- /.modal-body --> |
536 |
</div> <!-- /.modal-body --> |
513 |
<div class="modal-footer"> |
537 |
<div class="modal-footer"> |
514 |
- |
|
|