Lines 86-99
Link Here
|
86 |
Card number, username or surname: |
86 |
Card number, username or surname: |
87 |
</label> |
87 |
</label> |
88 |
<input type="text" name="cardnumber" id="cardnumber" autocomplete="off" |
88 |
<input type="text" name="cardnumber" id="cardnumber" autocomplete="off" |
89 |
type="text" value="" /> |
89 |
type="text" value="[% whole.value.other.cardnumber | html %]" /> |
90 |
</li> |
90 |
</li> |
91 |
<li> |
91 |
<li> |
92 |
<label class="required" for="branchcode">Destination library:</label> |
92 |
<label class="required" for="branchcode">Destination library:</label> |
93 |
<select id="branchcode" name="branchcode"> |
93 |
<select id="branchcode" name="branchcode"> |
94 |
<option value="" /> |
94 |
<option value="" /> |
95 |
[% FOREACH branch IN branches %] |
95 |
[% FOREACH branch IN branches %] |
96 |
<option value="[% branch.branchcode | html %]"> |
96 |
[% IF branch.branchcode == whole.value.other.branchcode %] |
|
|
97 |
<option value="[% branch.branchcode | html %]" selected="selected"> |
98 |
[% ELSE %] |
99 |
<option value="[% branch.branchcode | html %]"> |
100 |
[% END %] |
97 |
[% branch.branchname | html %] |
101 |
[% branch.branchname | html %] |
98 |
</option> |
102 |
</option> |
99 |
[% END %] |
103 |
[% END %] |
100 |
- |
|
|