source: trunk/template/yoga/admin/configuration.tpl @ 859

Last change on this file since 859 was 859, checked in by plg, 19 years ago
  • new : template yoga, made by yoDan, helped by chrisaga for integration becomes the official template.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1<!-- $Id: configuration.tpl 859 2005-09-03 20:01:14Z plg $ -->
2<div class="titrePage">
3  <ul class="categoryActions">
4    <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="template/yoga/theme/help.png" alt="(?)"></a></li>
5  </ul>
6  <h2>{lang:title_configuration}</h2>
7</div>
8
9<form method="post" action="{F_ACTION}" class="properties">
10
11<fieldset>
12<!-- BEGIN general -->
13  <legend>{lang:conf_general_title}</legend>
14
15  <ul>
16    <li>
17      <label><strong>{lang:History}</strong></label>
18      <input type="radio" class="radio" name="log" value="true" {general.HISTORY_YES} />{lang:Yes}
19      <input type="radio" class="radio" name="log" value="false" {general.HISTORY_NO} />{lang:No}
20    </li>
21
22    <li>
23      <label><strong>{lang:Lock gallery}</strong></label>
24      <input type="radio" class="radio" name="gallery_locked" value="true" {general.GALLERY_LOCKED_YES} />{lang:Yes}
25      <input type="radio" class="radio" name="gallery_locked" value="false" {general.GALLERY_LOCKED_NO} />{lang:No}
26    </li>
27  </ul>
28<!-- END general -->
29
30<!-- BEGIN comments -->
31  <legend>{lang:conf_comments_title}</legend>
32
33  <ul>
34    <li>
35      <label><strong>{lang:Comments for all}</strong></label>
36      <input type="radio" class="radio" name="comments_forall" value="true" {comments.COMMENTS_ALL_YES} />{lang:Yes}
37      <input type="radio" class="radio" name="comments_forall" value="false" {comments.COMMENTS_ALL_NO} />{lang:No}
38    </li>
39
40    <li>
41      <label for="nb_comment_page"><strong>{lang:Number of comments per page}</strong></label>
42      <input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{comments.NB_COMMENTS_PAGE}" />
43    </li>
44
45    <li>
46      <label><strong>{lang:Validation}</strong></label>
47      <input type="radio" class="radio" name="comments_validation" value="true" {comments.VALIDATE_YES} />{lang:Yes}
48      <input type="radio" class="radio" name="comments_validation" value="false" {comments.VALIDATE_NO} />{lang:No}
49    </li>
50  </ul>
51<!-- END comments -->
52<!-- BEGIN default -->
53  <legend>{lang:conf_default_title}</legend>
54
55  <ul>
56    <li>
57      <label for="language"><strong>{lang:Language}</strong></label>
58      <select name="default_language" id="default_language">
59        <!-- BEGIN language_option -->
60        <option value="{default.language_option.VALUE}" {default.language_option.SELECTED}>{default.language_option.CONTENT}</option>
61        <!-- END language_option -->
62      </select>
63    </li>
64
65    <li>
66      <label for="nb_image_line"><strong>{lang:Number of images per row}</strong></label>
67      <input type="text" size="3" maxlength="2" name="nb_image_line" value="{default.NB_IMAGE_LINE}" />
68    </li>
69
70    <li>
71      <label><strong>{lang:Number of rows per page}</strong></label>
72      <input type="text" size="3" maxlength="2" name="nb_line_page" value="{default.NB_ROW_PAGE}" />
73    </li>
74
75    <li>
76      <label><strong>{lang:Interface theme}</strong></label>
77      <select name="default_template" id="default_template">
78        <!-- BEGIN template_option -->
79        <option value="{default.template_option.VALUE}" {default.template_option.SELECTED}>{default.template_option.CONTENT}</option>
80        <!-- END template_option -->
81      </select>
82    </li>
83
84    <li>
85      <label for="recent_period"><strong>{lang:Recent period}</strong></label>
86      <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{default.CONF_RECENT}" />
87    </li>
88
89    <li>
90      <label><strong>{lang:Expand all categories}</strong></label>
91      <input type="radio" class="radio" name="auto_expand" value="true" {default.EXPAND_YES} />{lang:Yes}
92      <input type="radio" class="radio" name="auto_expand" value="false" {default.EXPAND_NO} />{lang:No}
93    </li>
94
95    <li>
96      <label><strong>{lang:Show number of comments}</strong></label>
97      <input type="radio" class="radio" name="show_nb_comments" value="true" {default.SHOW_COMMENTS_YES} />{lang:Yes}
98      <input type="radio" class="radio" name="show_nb_comments" value="false" {default.SHOW_COMMENTS_NO} />{lang:No}
99    </li>
100
101    <li>
102      <label><strong>{lang:Maximum width of the pictures}</strong></label>
103      <input type="text" size="4" maxlength="4" name="default_maxwidth" value="{default.MAXWIDTH}" />
104    </li>
105
106    <li>
107      <label><strong>{lang:Maximum height of the pictures}</strong></label>
108      <input type="text" size="4" maxlength="4" name="default_maxheight" value="{default.MAXHEIGHT}" />
109    </li>
110  </ul>
111<!-- END default -->
112  </fieldset>
113 
114  <p>
115    <input type="submit" name="submit" value="{lang:Submit}">
116    <input type="reset" name="reset" value="{lang:Reset}">
117  </p>
118</form>
Note: See TracBrowser for help on using the repository browser.