aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/admin/double_select.tpl
blob: ca789b3df979b30315a863f086813d4e100d8b90 (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
<!-- DEV TAG: not smarty migrated -->
<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 {category_option_true.SELECTED} value="{category_option_true.VALUE}">{category_option_true.OPTION}</option>
        <!-- END category_option_true -->
      </select>
      <p><input class="submit" type="submit" value="&raquo;" name="falsify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
    </td>

    <td>
      <h3>{L_CAT_OPTIONS_FALSE}</h3>
      <select class="categoryList" name="cat_false[]" multiple="multiple" size="30">
        <!-- BEGIN category_option_false -->
        <option {category_option_false.SELECTED} value="{category_option_false.VALUE}">{category_option_false.OPTION}</option>
        <!-- END category_option_false -->
      </select>
      <p><input class="submit" type="submit" value="&laquo;" name="trueify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p>
    </td>
  </tr>
</table>