diff options
author | plegall <plg@piwigo.org> | 2004-11-15 21:42:55 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2004-11-15 21:42:55 +0000 |
commit | b138e8aa0731b7e8f7a40f6af5024948bde40c52 (patch) | |
tree | 0bb5f77ce0fc6bdadb995ce1ad7eff1e22d5564e /template | |
parent | 2d0f0f03ba9d467c314f7ef7f06b5cb52f88c3d2 (diff) |
- admin/cat_options page really added this time : manage options for the
whole categories tree : uploadable, commentable, status and visible
git-svn-id: http://piwigo.org/svn/trunk@604 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/default/admin/cat_options.tpl | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/template/default/admin/cat_options.tpl b/template/default/admin/cat_options.tpl new file mode 100644 index 000000000..148f72e0b --- /dev/null +++ b/template/default/admin/cat_options.tpl @@ -0,0 +1,61 @@ +<p class="confMenu"> + <a class="{UPLOAD_CLASS}" href="{U_UPLOAD}">{L_CAT_OPTIONS_MENU_UPLOAD}</a> + <a class="{COMMENTS_CLASS}" href="{U_COMMENTS}">{L_CAT_OPTIONS_MENU_COMMENTS}</a> + <a class="{VISIBLE_CLASS}" href="{U_VISIBLE}">{L_CAT_OPTIONS_MENU_VISIBLE}</a> + <a class="{STATUS_CLASS}" href="{U_STATUS}">{L_CAT_OPTIONS_MENU_STATUS}</a> +</p> + +<form action="{F_ACTION}" method="post"> + + <select style="width:500px" multiple="multiple" name="cat[]" size="20"> + <!-- BEGIN category_option --> + <option class="{category_option.CLASS}" {category_option.SELECTED} value="{category_option.VALUE}">{category_option.OPTION}</option> + <!-- END category_option --> + </select> + + <!-- BEGIN upload --> + <p>{L_CAT_OPTIONS_UPLOAD_INFO}</p> + <p> + <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_UPLOAD_TRUE}</span> + </p> + <p> + <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_UPLOAD_FALSE}</span> + </p> + <!-- END upload --> + + <!-- BEGIN comments --> + <p>{L_CAT_OPTIONS_COMMENTS_INFO}</p> + <p> + <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_COMMENTS_TRUE}</span> + </p> + <p> + <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_COMMENTS_FALSE}</span> + </p> + <!-- END comments --> + + <!-- BEGIN visible --> + <p>{L_CAT_OPTIONS_VISIBLE_INFO}</p> + <p> + <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_VISIBLE_TRUE}</span> + </p> + <p> + <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_VISIBLE_FALSE}</span> + </p> + <!-- END visible --> + + <!-- BEGIN status --> + <p>{L_CAT_OPTIONS_STATUS_INFO}</p> + <p> + <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_STATUS_TRUE}</span> + </p> + <p> + <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_STATUS_FALSE}</span> + </p> + <!-- END status --> + + <p style="text-align:center;"> + <input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" /> + <input type="reset" name="reset" value="{L_RESET}" class="bouton" /> + </p> + +</form> |