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