diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-03-05 01:50:08 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-03-05 01:50:08 +0000 |
commit | 152d07d752a6da15518d22deed573e1d26b8193c (patch) | |
tree | a8d2b4c75c4eade36a08112d984240e36ab0525a /template/yoga/admin/double_select.tpl | |
parent | 925f581f2864cbb35cdb8b344d0d29f2659707d4 (diff) |
- admin comments, configuration, element_set_global, element_set_unit, thumbnail and double_select migration to smarty
- fix in redirect.tpl
git-svn-id: http://piwigo.org/svn/trunk@2249 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/double_select.tpl')
-rw-r--r-- | template/yoga/admin/double_select.tpl | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/template/yoga/admin/double_select.tpl b/template/yoga/admin/double_select.tpl index ca789b3df..aeed8500a 100644 --- a/template/yoga/admin/double_select.tpl +++ b/template/yoga/admin/double_select.tpl @@ -1,24 +1,20 @@ -<!-- DEV TAG: not smarty migrated --> +{* $Id$ *} <table class="doubleSelect"> <tr> <td> - <h3>{L_CAT_OPTIONS_TRUE}</h3> + <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 --> + {html_options options=$category_option_true selected=$category_option_true_selected} </select> - <p><input class="submit" type="submit" value="»" name="falsify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p> + <p><input class="submit" type="submit" value="»" name="falsify" style="font-size:15px;" {$TAG_INPUT_ENABLED}/></p> </td> <td> - <h3>{L_CAT_OPTIONS_FALSE}</h3> + <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 --> + {html_options options=$category_option_false selected=$category_option_false_selected} </select> - <p><input class="submit" type="submit" value="«" name="trueify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p> + <p><input class="submit" type="submit" value="«" name="trueify" style="font-size:15px;" {$TAG_INPUT_ENABLED}/></p> </td> </tr> </table> |