aboutsummaryrefslogtreecommitdiffstats
path: root/template/default/admin/cat_options.tpl
blob: 1a5f442ba25f11c3ffa80c85574c2209c2ebace2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<table width="100%" align="center">
  <tr class="admin">
    <th colspan="2">{L_TITLE}</th>
  </tr>
</table>

<form action="{F_ACTION}" method="post">

  <table>
    <tr>
      <td style="text-align:center;">{L_CAT_OPTIONS_TRUE}</td>
      <td></td>
      <td style="text-align:center;">{L_CAT_OPTIONS_FALSE}</td>
    </tr>
    <tr>
      <td>
  <select style="width:300px" multiple="multiple" name="cat_true[]" size="20">
    <!-- 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>
      </td>
      <td valign="middle">
  <input type="submit" value="&rarr;" name="falsify" style="font-size:15px;" class="bouton" />
  <br />
  <input type="submit" value="&larr;" name="trueify" style="font-size:15px;" class="bouton" />
      </td>
      <td>
  <select style="width:300px" multiple="multiple" name="cat_false[]" size="20">
    <!-- 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>
      </td>
    </tr>
  </table>

  <p>{L_CAT_OPTIONS_INFO}</p>

  <p style="text-align:center;">
    <input type="reset" name="reset" value="{L_RESET}" class="bouton" />
  </p>

</form>