source: trunk/themes/smartpocket/admin/admin.tpl @ 23718

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

bug:2848
added two options for the slideshow

ToDo lang var

File size: 1.7 KB
Line 
1{combine_css path="themes/default/js/ui/theme/jquery.ui.button.css"}
2{combine_css path="themes/smartpocket/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>{'Smartpocket, Configuration Page'|@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>{'Slideshow Options'|@translate}</legend>
18    <ul>
19      <li class="radio" >
20        <label for="loop"><span class="property">{'Loop the slideshow'|@translate}</span>&nbsp;</label>
21        <input type="radio" id="loop_true" name="loop" value="true" {if $options.loop}checked="checked"{/if}><label for="loop_true">{'Yes'|@translate}</label>
22        <input type="radio" id="loop_false" name="loop" value="false" {if !$options.loop}checked="checked"{/if}><label for="loop_false">{'No'|@translate}</label>
23      </li>
24      <li class="radio" >
25        <label for="autohide"><span class="property">{'Autohide the bar of the slideshow'|@translate}</span>&nbsp;</label>
26        <input type="radio" id="autohide_on" name="autohide" value="5000" {if $options.autohide==5000}checked="checked"{/if}><label for="autohide_on">{'Yes'|@translate}</label>
27        <input type="radio" id="autohide_off" name="autohide" value="0" {if $options.autohide==0}checked="checked"{/if}><label for="autohide_off">{'No'|@translate}</label>
28      </li>
29    </ul>
30  </fieldset>
31</div>
32<p>
33  <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_smartpocket" />
34</p>
35</form>
Note: See TracBrowser for help on using the repository browser.