source: trunk/themes/elegant/admin/admin.tpl @ 23251

Last change on this file since 23251 was 23251, checked in by flop25, 11 years ago

feature:2924
adding 3 options for the default behaviour of the panels
ToDo lang files

File size: 3.1 KB
Line 
1{combine_css path="themes/default/js/ui/theme/jquery.ui.button.css"}
2{combine_css path="themes/elegant/admin/jquery.ui.button.css"}
3{footer_script require='jquery.ui.button'}
4{literal}
5jQuery(document).ready(function(){
6  jQuery( ".radio" ).buttonset();
7});
8{/literal}
9{/footer_script}
10
11<div class="titrePage">
12  <h2>{'Elegant Configuration'|@translate}</h2>
13</div>
14<form method="post" class="properties" action="" ENCTYPE="multipart/form-data" name="form" class="properties">
15<div id="configContent">
16  <fieldset>
17    <legend>{'Panels options'|@translate}</legend>
18    <p>{'Choose what should be the default state for each panel, or disable the animation:'|@translate}</p>
19    <ul>
20      <li class="radio" >
21        <label for="p_main_menu"><span class="property">{'Main Menu Panel'|@translate}</span>&nbsp;</label>
22        <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>
23        <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>
24        <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>
25      </li>
26      <li class="radio" >
27        <label for="p_pict_descr"><span class="property">{'Photo Description Panel'|@translate}</span>&nbsp;</label>
28        <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>
29        <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>
30        <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>
31      </li>
32      <li class="radio" >
33        <label for="p_pict_comment"><span class="property">{'Comments Panel'|@translate}</span>&nbsp;</label>
34        <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>
35        <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>
36        <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>
37      </li>
38    </ul>
39  </fieldset>
40</div>
41<p>
42  <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_elegant" />
43</p>
44</form>
Note: See TracBrowser for help on using the repository browser.