Lines 259-267
Link Here
|
259 |
<li> |
259 |
<li> |
260 |
<label for="branchlimit">Library: </label> |
260 |
<label for="branchlimit">Library: </label> |
261 |
<select name="branchlimit" id="branchlimit"> |
261 |
<select name="branchlimit" id="branchlimit"> |
262 |
[% IF !Koha.Preference('IndependentBranches') || (Koha.Preference('IndependentBranches') && CAN_user_superlibrarian) %] |
262 |
[% IF CAN_user_superlibrarian || !Koha.Preference('IndependentBranches') %] |
263 |
<option value="">All</option> |
263 |
<option value="">All</option> |
264 |
[% END %] |
264 |
[% END %] |
265 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => branchlimit, only_from_group => 1 ) %] |
265 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => branchlimit, only_from_group => 1 ) %] |
266 |
</select> |
266 |
</select> |
267 |
</li> |
267 |
</li> |
268 |
- |
|
|