Lines 293-308
Link Here
|
293 |
</form> |
293 |
</form> |
294 |
</li> |
294 |
</li> |
295 |
<li id="branch"> |
295 |
<li id="branch"> |
296 |
<span class="label">Branch:</span> |
296 |
<span class="label">Library:</span> |
297 |
[% IF basketbranchname %] |
297 |
[% IF basketbranchname %] |
298 |
[% basketbranchname %] |
298 |
[% basketbranchname %] |
299 |
[% ELSE %] |
299 |
[% ELSE %] |
300 |
No branch |
300 |
No library |
301 |
[% END %] |
301 |
[% END %] |
302 |
[% IF branches_loop.size %] |
302 |
[% IF branches_loop.size %] |
303 |
<form action="" method="post"> |
303 |
<form action="" method="post"> |
304 |
<select id="branch" name="branch"> |
304 |
<select id="branch" name="branch"> |
305 |
<option value="">(no branch)</option> |
305 |
<option value="">(no library)</option> |
306 |
[% FOREACH branch IN branches_loop %] |
306 |
[% FOREACH branch IN branches_loop %] |
307 |
[% IF (branch.selected) %] |
307 |
[% IF (branch.selected) %] |
308 |
<option selected="selected" value="[% branch.branchcode %]"> [% branch.branchname %]</option> |
308 |
<option selected="selected" value="[% branch.branchcode %]"> [% branch.branchname %]</option> |
309 |
- |
|
|