Lines 7-13
Link Here
|
7 |
<div id="mainbloc"> |
7 |
<div id="mainbloc"> |
8 |
<form name="f_pop" onsubmit="report()" action=""> |
8 |
<form name="f_pop" onsubmit="report()" action=""> |
9 |
<h2 class="authority">Collection</h2> |
9 |
<h2 class="authority">Collection</h2> |
10 |
<p><label>Select a collection</label>[% collection %]</p> |
10 |
<p><label>Select a collection</label> |
|
|
11 |
<select name="f1" id="f1" size="1"> |
12 |
[% FOREACH value IN collection.values %] |
13 |
[% IF ( value == collection.default ) %] |
14 |
<option value="[% value %]" selected="selected">[% value %]</option> |
15 |
[% ELSE %] |
16 |
<option value="[% value %]">[% value %]</option> |
17 |
[% END %] |
18 |
[% END %] |
19 |
</select> |
20 |
</p> |
11 |
OR new collection: <input type="text" value="" name="f2"/> |
21 |
OR new collection: <input type="text" value="" name="f2"/> |
12 |
<br/> |
22 |
<br/> |
13 |
<input type="submit" value="OK" class="button authority" /> |
23 |
<input type="submit" value="OK" class="button authority" /> |
14 |
- |
|
|