View | Details | Raw Unified | Return to bug 29795
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-1 / +3 lines)
Lines 249-254 Link Here
249
                                                        <label for="borrower_branchcode" class="[% required.branchcode | html %]">Home library:</label>
249
                                                        <label for="borrower_branchcode" class="[% required.branchcode | html %]">Home library:</label>
250
250
251
                                                        <select id="borrower_branchcode" name="borrower_branchcode" class="[% required.branchcode | html %]">
251
                                                        <select id="borrower_branchcode" name="borrower_branchcode" class="[% required.branchcode | html %]">
252
                                                            [% IF required.branchcode %]
253
                                                                <option value=""></option>
254
                                                            [% END %]
252
                                                            [% FOREACH l IN libraries %]
255
                                                            [% FOREACH l IN libraries %]
253
                                                                [% IF l.branchcode == borrower.branchcode %]
256
                                                                [% IF l.branchcode == borrower.branchcode %]
254
                                                                    <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option>
257
                                                                    <option value="[% l.branchcode | html %]" selected="selected">[% l.branchname | html %]</option>
255
- 

Return to bug 29795