diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-08-18 19:34:15 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-08-18 19:34:15 +0000 |
commit | 820478cba97938148c94e36ed5e604c8714bb24e (patch) | |
tree | 42d4aa1860acd38d1b76f617b3ebf78ed7503620 /template/cclear/admin/double_select.tpl | |
parent | b99acc760485651dc5b33c3fae75d041889ecd3f (diff) |
cclear :
--------
- Added Files (from default template):
- double_select.tpl element_set_global.tpl element_set_unit.tpl
- intro.tpl maintenance.tpl user_list.tpl
git-svn-id: http://piwigo.org/svn/trunk@827 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/cclear/admin/double_select.tpl')
-rw-r--r-- | template/cclear/admin/double_select.tpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/template/cclear/admin/double_select.tpl b/template/cclear/admin/double_select.tpl new file mode 100644 index 000000000..1745c52d3 --- /dev/null +++ b/template/cclear/admin/double_select.tpl @@ -0,0 +1,23 @@ +<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 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 {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> |