diff options
author | flop25 <flop25@piwigo.org> | 2013-06-16 14:22:35 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2013-06-16 14:22:35 +0000 |
commit | b4cac600761d9f54a2af389dc394be061fad292c (patch) | |
tree | 5b6c1d71e80588dc82c03aa6393c84f9f11e9bc3 /themes/elegant/admin/admin.tpl | |
parent | c86481cbbef6d221d0bcd1d69e9434fd19dc2b22 (diff) |
feature:2924
adding 3 options for the default behaviour of the panels
ToDo lang files
git-svn-id: http://piwigo.org/svn/trunk@23251 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/elegant/admin/admin.tpl')
-rw-r--r-- | themes/elegant/admin/admin.tpl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/themes/elegant/admin/admin.tpl b/themes/elegant/admin/admin.tpl new file mode 100644 index 000000000..83f45f71f --- /dev/null +++ b/themes/elegant/admin/admin.tpl @@ -0,0 +1,44 @@ +{combine_css path="themes/default/js/ui/theme/jquery.ui.button.css"} +{combine_css path="themes/elegant/admin/jquery.ui.button.css"} +{footer_script require='jquery.ui.button'} +{literal} +jQuery(document).ready(function(){ + jQuery( ".radio" ).buttonset(); +}); +{/literal} +{/footer_script} + +<div class="titrePage"> + <h2>{'Elegant Configuration'|@translate}</h2> +</div> +<form method="post" class="properties" action="" ENCTYPE="multipart/form-data" name="form" class="properties"> +<div id="configContent"> + <fieldset> + <legend>{'Panels options'|@translate}</legend> + <p>{'Choose what should be the default state for each panel, or disable the animation:'|@translate}</p> + <ul> + <li class="radio" > + <label for="p_main_menu"><span class="property">{'Main Menu Panel'|@translate}</span> </label> + <input type="radio" id="p_main_menu_on" name="p_main_menu" value="on" {if $options.p_main_menu=="on"}checked="checked"{/if}><label for="p_main_menu_on">{'Displayed'|@translate}</label> + <input type="radio" id="p_main_menu_off" name="p_main_menu" value="off" {if $options.p_main_menu=="off"}checked="checked"{/if}><label for="p_main_menu_off">{'Hidden'|@translate}</label> + <input type="radio" id="p_main_menu_disabled" name="p_main_menu" value="disabled" {if $options.p_main_menu=="disabled"}checked="checked"{/if}><label for="p_main_menu_disabled">{'Disable animation'|@translate}</label> + </li> + <li class="radio" > + <label for="p_pict_descr"><span class="property">{'Photo Description Panel'|@translate}</span> </label> + <input type="radio" id="p_pict_descr_on" name="p_pict_descr" value="on" {if $options.p_pict_descr=="on"}checked="checked"{/if}><label for="p_pict_descr_on">{'Displayed'|@translate}</label> + <input type="radio" id="p_pict_descr_off" name="p_pict_descr" value="off" {if $options.p_pict_descr=="off"}checked="checked"{/if}><label for="p_pict_descr_off">{'Hidden'|@translate}</label> + <input type="radio" id="p_pict_descr_disabled" name="p_pict_descr" value="disabled" {if $options.p_pict_descr=="disabled"}checked="checked"{/if}><label for="p_pict_descr_disabled">{'Disable animation'|@translate}</label> + </li> + <li class="radio" > + <label for="p_pict_comment"><span class="property">{'Comments Panel'|@translate}</span> </label> + <input type="radio" id="p_pict_comment_on" name="p_pict_comment" value="on" {if $options.p_pict_comment=="on"}checked="checked"{/if}><label for="p_pict_comment_on">{'Displayed'|@translate}</label> + <input type="radio" id="p_pict_comment_off" name="p_pict_comment" value="off" {if $options.p_pict_comment=="off"}checked="checked"{/if}><label for="p_pict_comment_off">{'Hidden'|@translate}</label> + <input type="radio" id="p_pict_comment_disabled" name="p_pict_comment" value="disabled" {if $options.p_pict_comment=="disabled"}checked="checked"{/if}><label for="p_pict_comment_disabled">{'Disable animation'|@translate}</label> + </li> + </ul> + </fieldset> +</div> +<p> + <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_elegant" /> +</p> +</form> |