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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/desks.tt (-2 / +1 lines)
Lines 118-124 Link Here
118
                    <select id="branchcode" name="branchcode" required="required">
118
                    <select id="branchcode" name="branchcode" required="required">
119
                      <option value=""></option>
119
                      <option value=""></option>
120
                      [% FOREACH branch IN branches %]
120
                      [% FOREACH branch IN branches %]
121
                        [% IF (Branches.GetLoggedInBranchcode == branch.branchcode) %]
121
                        [% IF desk.branchcode == branch.branchcode %]
122
                        <option value="[% branch.branchcode|html %]" selected="selected">[% branch.branchname|html %]</option>
122
                        <option value="[% branch.branchcode|html %]" selected="selected">[% branch.branchname|html %]</option>
123
                        [% ELSE %]
123
                        [% ELSE %]
124
                        <option value="[% branch.branchcode|html %]">[% branch.branchname|html %]</option>
124
                        <option value="[% branch.branchcode|html %]">[% branch.branchname|html %]</option>
125
- 

Return to bug 30107