Lines 43-52
Link Here
|
43 |
[% END %] |
43 |
[% END %] |
44 |
[% END %] |
44 |
[% END %] |
45 |
|
45 |
|
46 |
[% IF ( item.notforloan || item.effective_itemtype.notforloan ) %] |
46 |
[% IF ( item.not_for_loan ) %] |
47 |
[% SET itemavailable = 0 %] |
47 |
[% SET itemavailable = 0 %] |
48 |
[% SET notforloan = item.notforloan || item.effective_itemtype.notforloan %] |
48 |
[% notforloan_description = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.not_for_loan ) %] |
49 |
[% notforloan_description = AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => notforloan ) %] |
|
|
50 |
[% IF notforloan_description %] |
49 |
[% IF notforloan_description %] |
51 |
<span class="item-status notforloan">[% notforloan_description | html %]</span> |
50 |
<span class="item-status notforloan">[% notforloan_description | html %]</span> |
52 |
[% ELSE %] |
51 |
[% ELSE %] |
53 |
- |
|
|