Lines 175-181
Link Here
|
175 |
<li> |
175 |
<li> |
176 |
<label for="notforloanfilter">Not for loan: </label> |
176 |
<label for="notforloanfilter">Not for loan: </label> |
177 |
<select name="notforloanfilter" id="notforloanfilter"> |
177 |
<select name="notforloanfilter" id="notforloanfilter"> |
178 |
<option value="">All</option> |
178 |
<option value="">All not for loan statuses</option> |
179 |
[% FOREACH n IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.notforloan') %] |
179 |
[% FOREACH n IN AuthorisedValues.GetDescriptionsByKohaField( kohafield => 'items.notforloan') %] |
180 |
[% IF n.authorised_value == notforloanfilter %] |
180 |
[% IF n.authorised_value == notforloanfilter %] |
181 |
<option value="[% n.authorised_value | html %]" selected="selected">[% n.lib | html %]</option> |
181 |
<option value="[% n.authorised_value | html %]" selected="selected">[% n.lib | html %]</option> |
182 |
- |
|
|