diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-28 00:16:53 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-28 00:16:53 +0000 |
commit | 30e259904cc38172b2b730455009455675f0d8f5 (patch) | |
tree | b454d1d0e8c2ee75eb2bb4e41b0658f833a5a1a2 /template/yoga/admin/configuration.tpl | |
parent | fec44b7f888783afeb99f256a07cfcef185d2110 (diff) |
admin pages: merge Categories/comments page into Configuration/comments page
(they are related and we reduce the # of links in the menu)
git-svn-id: http://piwigo.org/svn/trunk@1865 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/configuration.tpl')
-rw-r--r-- | template/yoga/admin/configuration.tpl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/template/yoga/admin/configuration.tpl b/template/yoga/admin/configuration.tpl index a6b14e1e5..7622564d4 100644 --- a/template/yoga/admin/configuration.tpl +++ b/template/yoga/admin/configuration.tpl @@ -221,3 +221,35 @@ <input class="submit" type="reset" name="reset" value="{lang:Reset}"> </p> </form> + + +<!-- BEGIN comments --> +<form method="post" action="{F_ACTION}" class="properties"> +<fieldset> + <legend>{lang:cat_comments_title}</legend> + <table class="doubleSelect"> + <tr> + <td> + <h3>{lang:authorized}</h3> + <select class="categoryList" name="cat_true[]" multiple="multiple" size="30"> + <!-- BEGIN category_option_true --> + <option {comments.category_option_true.SELECTED} value="{comments.category_option_true.VALUE}">{comments.category_option_true.OPTION}</option> + <!-- END category_option_true --> + </select> + <p><input class="submit" type="submit" value="»" name="falsify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p> + </td> + + <td> + <h3>{lang:forbidden}</h3> + <select class="categoryList" name="cat_false[]" multiple="multiple" size="30"> + <!-- BEGIN category_option_false --> + <option {comments.category_option_false.SELECTED} value="{comments.category_option_false.VALUE}">{comments.category_option_false.OPTION}</option> + <!-- END category_option_false --> + </select> + <p><input class="submit" type="submit" value="«" name="trueify" style="font-size:15px;" {TAG_INPUT_ENABLED}/></p> + </td> + </tr> + </table> +</fieldset> +</form> +<!-- END comments --> |