Bug 15758: Koha::Libraries - Remove GetBranchesLoop
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / html_helpers.inc
1 [% BLOCK options_for_libraries %]
2     [% FOREACH l IN libraries %]
3         [% IF l.selected %]
4             <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname %]</option>
5         [% ELSE %]
6             <option value="[% l.branchcode | html %]">[% l.branchname %]</option>
7         [% END%]
8     [% END %]
9 [% END %]