source: extensions/stripped/admin/admin.tpl @ 7989

Last change on this file since 7989 was 7989, checked in by Zaphod, 13 years ago

[extension] stripped - first release

File size: 3.1 KB
Line 
1<div class="titrePage">
2        <h2>stripped Theme Configuration</h2>
3</div>
4
5<form method="post" class="properties" action="" ENCTYPE="multipart/form-data" name="form" class="properties">
6        <div>
7                <fieldset>
8                        <legend>{'Interface options'|@translate}</legend>
9                        <ul>
10                                <li><label>
11                                        <span class="property">{'Animate menu'|@translate}</span>&nbsp;
12                                        <input type="checkbox" name="f_animatedMenu" {if $options.animatedMenu}checked{/if}>
13                                </label></li>
14                                <li><label>
15                                        <span class="property">{'Animate tabs on picture page'|@translate}</span>&nbsp;
16                                        <input type="checkbox" name="f_animatedTabs" {if $options.animatedTabs}checked{/if}>
17                                </label></li>
18                                <li><label>
19                                        <span class="property">{'Replace all icons by ALT text'|@translate}</span>&nbsp;
20                                        <input type="checkbox" name="f_replaceActionIcons" {if $options.replaceActionIcons}checked{/if}>
21                                </label></li>
22                        </ul>
23                </fieldset>
24                <fieldset>
25                        <legend>{'Picture page options'|@translate}</legend>
26                        <ul>
27                                <li><label>
28                                        <span class="property">{'Show image title on top of the page (after browse path)'|@translate}</span>&nbsp;
29                                        <input type="checkbox" name="f_showTitleOnBrowsePath" {if $options.showTitleOnBrowsePath}checked{/if}>
30                                </label></li>
31                                <li><label>
32                                        <span class="property">{'Show description instead of title below image'|@translate}</span>&nbsp;
33                                        <input type="checkbox" name="f_showDescriptionInsteadOfTitle" {if $options.showDescriptionInsteadOfTitle}checked{/if}>
34                                </label></li>
35                                <li><label>
36                                        <span class="property">{'Show Information tab only to admins'|@translate}</span>&nbsp;
37                                        <input type="checkbox" name="f_infoTabAdminOnly" {if $options.infoTabAdminOnly}checked{/if}>
38                                </label></li>
39                        </ul>
40                </fieldset>
41                <fieldset>
42                        <legend>{'Image autosize options'|@translate}</legend>
43                        <ul>
44                                <li><label>
45                                        <span class="property" >{'Resize image to fit window'|@translate}</span>&nbsp;
46                                        <input type="checkbox" name="f_imageAutosize" {if $options.imageAutosize}checked{/if}>
47                                </label></li>
48                        </ul>
49                        <fieldset style="width:80%; margin:auto;">
50                                <ul>
51                                        <li><label>
52                                                <span class="property">{'Include title after resize'|@translate}</span>&nbsp;
53                                                <input type="checkbox" name="f_imageAutosizeTitle" {if $options.imageAutosizeTitle}checked{/if}>
54                                        </label></li>
55                                        <li>
56                                                <label for="imageAutosizeMargin"><span class="property">{'Additional bottom margin after resize'|@translate}</span>&nbsp;</label>
57                                                <input type="text" id="imageAutosizeMargin" name="f_imageAutosizeMargin" size="1" maxlength="3" value="{$options.imageAutosizeMargin}" style="text-align:center;">&nbsp;px
58                                        </li>
59                                        <li>
60                                                <label for="imageAutosizeMinHeight"><span class="property">{'Minimum image height after resize'|@translate}</span>&nbsp;</label>
61                                                <input type="text" id="imageAutosizeMinHeight" name="f_imageAutosizeMinHeight" size="1" maxlength="3" value="{$options.imageAutosizeMinHeight}" style="text-align:center;">&nbsp;px
62                                        </li>
63                                </ul>
64                        </fieldset>
65                </fieldset>
66        </div>
67        <p><input class="submit" type="submit" value="{'Submit'|@translate}" name="submit_stripped" /></p>
68</form>
Note: See TracBrowser for help on using the repository browser.