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