blob: a86be68497c2795dec9d3af5201e3da49f7c4eb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<div class="admin">{L_CAT_TITLE}</div>
<form method="post" action="{F_ACTION}">
<table class="doubleSelect">
<tr>
<td>
<h3>{L_CAT_OPTIONS_TRUE}</h3>
<select class="categoryList" name="cat_true[]" multiple="multiple" size="30">
<!-- BEGIN category_option_true -->
<option class="{category_option_true.CLASS}" {category_option_true.SELECTED} value="{category_option_true.VALUE}">{category_option_true.OPTION}</option>
<!-- END category_option_true -->
</select>
<p><input type="submit" value="»" name="falsify" style="font-size:15px;"/></p>
</td>
<td>
<h3>{L_CAT_OPTIONS_FALSE}</h3>
<select class="categoryList" name="cat_false[]" multiple="multiple" size="30">
<!-- BEGIN category_option_false -->
<option class="{category_option_false.CLASS}" {category_option_false.SELECTED} value="{category_option_false.VALUE}">{category_option_false.OPTION}</option>
<!-- END category_option_false -->
</select>
<p><input type="submit" value="«" name="trueify" style="font-size:15px;" /></p>
</td>
</tr>
</table>
</form>
<div class="information">{L_CAT_OPTIONS_INFO}</div>
|