Lines 2-7
Link Here
|
2 |
[% USE Asset %] |
2 |
[% USE Asset %] |
3 |
[% USE Koha %] |
3 |
[% USE Koha %] |
4 |
[% USE KohaDates %] |
4 |
[% USE KohaDates %] |
|
|
5 |
[% USE AuthorisedValues %] |
6 |
[% USE Branches %] |
5 |
[% SET footerjs = 1 %] |
7 |
[% SET footerjs = 1 %] |
6 |
[% INCLUDE 'doc-head-open.inc' %] |
8 |
[% INCLUDE 'doc-head-open.inc' %] |
7 |
<title> |
9 |
<title> |
Lines 274-280
Link Here
|
274 |
[% IF ( itemsloo.notforloan ) %] |
276 |
[% IF ( itemsloo.notforloan ) %] |
275 |
<span class="noholdstext">No holds allowed</span> |
277 |
<span class="noholdstext">No holds allowed</span> |
276 |
[% ELSE %] |
278 |
[% ELSE %] |
277 |
[% IF ( itemsloo.ITEM_RESULTS.size ) %] |
279 |
[% IF ( itemsloo.ITEM_RESULTS.count ) %] |
278 |
<a id="reserve_[% itemsloo.biblionumber | html %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | html %]">Holds</a> |
280 |
<a id="reserve_[% itemsloo.biblionumber | html %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | html %]">Holds</a> |
279 |
[% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | uri %]&findborrower=[% holdfor_cardnumber | uri %]">Place hold for [% holdfor_firstname | html %] [% holdfor_surname | html %] ([% holdfor_cardnumber | html %])</a></span>[% END %] |
281 |
[% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | uri %]&findborrower=[% holdfor_cardnumber | uri %]">Place hold for [% holdfor_firstname | html %] [% holdfor_surname | html %] ([% holdfor_cardnumber | html %])</a></span>[% END %] |
280 |
[% ELSE %] |
282 |
[% ELSE %] |
Lines 293-304
Link Here
|
293 |
<td>[% itemsloo.dateadded | $KohaDates%]</td> |
295 |
<td>[% itemsloo.dateadded | $KohaDates%]</td> |
294 |
<td> |
296 |
<td> |
295 |
<ul> |
297 |
<ul> |
296 |
[% FOREACH result IN itemsloo.ITEM_RESULTS %] |
298 |
[% FOREACH item IN itemsloo.ITEM_RESULTS %] |
297 |
<li> |
299 |
<li> |
298 |
[% result.holdingbranch | html %] |
300 |
[% Branches.GetName(item.holdingbranch) | html %] |
299 |
[% IF ( result.location_intranet ) %]<span class="shelvingloc">[% result.location_intranet | html %]</span>[% END %] |
301 |
[% IF ( item.location ) %] |
300 |
[% IF ( result.itemcallnumber ) %] |
302 |
<span class="shelvingloc"> |
301 |
[<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&q=%22[% result.itemcallnumber |uri %]%22">[% result.itemcallnumber | html %]</a>] |
303 |
[% SET AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => item.location ) | html %]%] |
|
|
304 |
</span> |
305 |
[% END %] |
306 |
[% IF ( item.itemcallnumber ) %] |
307 |
[<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&q=%22[% item.itemcallnumber | uri %]%22">[% item.itemcallnumber | html %]</a>] |
302 |
[% END %] |
308 |
[% END %] |
303 |
</li> |
309 |
</li> |
304 |
[% END %] |
310 |
[% END %] |