Lines 284-294
legend:hover {
Link Here
|
284 |
Salutation: </label> |
284 |
Salutation: </label> |
285 |
<select id="btitle" name="title"> |
285 |
<select id="btitle" name="title"> |
286 |
<option value=""></option> |
286 |
<option value=""></option> |
287 |
[% FOREACH t IN Koha.Preference('BorrowersTitles').split('\|') %] |
287 |
[% FOREACH patron_title IN Koha.Preference('BorrowersTitles').split('\|') %] |
288 |
[% IF btitle == t %] |
288 |
[% IF btitle == patron_title %] |
289 |
<option value="[% t | html %]" selected="selected">[% t | html %]</option> |
289 |
<option value="[% patron_title | html %]" selected="selected">[% patron_title | html %]</option> |
290 |
[% ELSE %] |
290 |
[% ELSE %] |
291 |
<option value="[% t | html %]">[% t | html %]</option> |
291 |
<option value="[% patron_title | html %]">[% t | html %]</option> |
292 |
[% END %] |
292 |
[% END %] |
293 |
[% END %] |
293 |
[% END %] |
294 |
</select> |
294 |
</select> |
295 |
- |
|
|