source: extensions/skeleton/trunk/admin/template/config.tpl @ 24182

Last change on this file since 24182 was 24182, checked in by mistic100, 11 years ago

remove php end tags, remove at symbol in template, add example of class handlers, remove useless files

File size: 1.3 KB
Line 
1{combine_css path=$SKELETON_PATH|@cat:"admin/template/style.css"}
2
3{footer_script}{literal}
4jQuery('input[name="option2"]').change(function() {
5  $('.option1').toggle();
6});
7
8jQuery(".showInfo").tipTip({
9  delay: 0,
10  fadeIn: 200,
11  fadeOut: 200,
12  maxWidth: '300px',
13  defaultPosition: 'bottom'
14});
15{/literal}{/footer_script}
16
17<div class="titrePage">
18        <h2>Skeleton</h2>
19</div>
20
21<form method="post" action="" class="properties">
22<fieldset>
23  <legend>{'Common configuration'|translate}</legend>
24 
25  <ul>
26    <li>
27      <label>
28        <input type="checkbox" name="option2" value="1" {if $skeleton.option2}checked="checked"{/if}>
29        <b>{'Checkbox'|translate}</b>
30      </label>
31      <a class="icon-info-circled-1 showInfo" title="{'Check me!'|translate}"></a>
32    </li>
33    <li class="option1" {if not $skeleton.option2}style="display:none;"{/if}>
34      <label>
35        <b>{'Integer'|translate}</b>
36        <input type="text" name="option1" value="{$skeleton.option1}" size="4">
37      </label>
38    </li>
39    <li>
40      <label>
41        <b>{'Select'|translate}</b>
42        {html_options name=option3 options=$select_options selected=$skeleton.option3}
43      </label>
44    </li>
45  </ul>
46</fieldset>
47
48<p class="formButtons"><input type="submit" name="save_config" value="{'Save Settings'|translate}"></p>
49
50</form>
Note: See TracBrowser for help on using the repository browser.