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

Last change on this file since 1926 was 1926, checked in by rub, 18 years ago

Issue 578
User guest must be real user

Step 1: guest is a real user

On next commit, I finish installation and use of guest of user list and group

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1<!-- $Id: configuration.tpl 1926 2007-03-28 19:57:00Z rub $ -->
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="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>
5  </ul>
6  <h2>{lang:title_configuration} {TABSHEET_TITLE}</h2>
7  {TABSHEET}
8</div>
9
10<form method="post" action="{F_ACTION}" class="properties">
11
12<!-- BEGIN main -->
13<fieldset id="mainConf">
14  <ul>
15    <li>
16      <span class="property">
17        <label for="gallery_title">{lang:Gallery title}</label>
18      </span>
19      <input type="text" maxlength="255" size="50" name="gallery_title" id="gallery_title" value="{main.CONF_GALLERY_TITLE}" />
20    </li>
21
22    <li>
23      <span class="property">
24        <label for="page_banner">{lang:Page banner}</label>
25      </span>
26      <textarea class="description" name="page_banner" id="page_banner">{main.CONF_PAGE_BANNER}</textarea>
27    </li>
28
29    <li>
30      <span class="property">
31        <label for="gallery_url">{lang:Gallery URL}</label>
32      </span>
33      <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{main.CONF_GALLERY_URL}" />
34    </li>
35
36    <li>
37      <span class="property">{lang:Lock gallery}</span>
38      <label><input type="radio" class="radio" name="gallery_locked" value="true" {main.GALLERY_LOCKED_YES} />{lang:Yes}</label>
39      <label><input type="radio" class="radio" name="gallery_locked" value="false" {main.GALLERY_LOCKED_NO} />{lang:No}</label>
40    </li>
41  </ul>
42</fieldset>
43
44<fieldset id="mainConfCheck">
45  <ul>
46
47    <li>
48      <span class="property">{lang:Rating}</span>
49      <input type="checkbox" name="rate" {main.RATE} />
50    </li>
51
52    <li>
53      <span class="property">{lang:Rating by guests}</span>
54      <input type="checkbox" name="rate_anonymous" {main.RATE_ANONYMOUS} />
55    </li>
56
57    <li>
58      <label for="allow_user_registration">
59        <span class="property">{lang:Allow user registration}</span>
60        <input type="checkbox" name="allow_user_registration" id="allow_user_registration" {main.ALLOW_USER_REGISTRATION} />
61      </label>
62    </li>
63
64    <li>
65      <label>
66        <span class="property">{lang:Email administrators when a new user registers}</span>
67        <input type="checkbox" name="email_admin_on_new_user" {main.EMAIL_ADMIN_ON_NEW_USER} />
68      </label>
69    </li>
70
71    <li>
72      <label>
73        <span class="property">{lang:Email administrators when a picture is uploaded}</span>
74        <input type="checkbox" name="email_admin_on_picture_uploaded" {main.EMAIL_ADMIN_ON_PICTURE_UPLOADED} />
75      </label>
76    </li>
77  </ul>
78</fieldset>
79<!-- END main -->
80
81<!-- BEGIN history -->
82<fieldset id="historyConf">
83  <ul>
84      <li>
85        <label><span class="property">{lang:conf_history_guest}</span><input type="checkbox" name="history_guest" {history.HISTORY_GUEST} /></label>
86      </li>
87
88      <li>
89        <label><span class="property">{lang:conf_history_user}</span><input type="checkbox" name="log" {history.LOG} /></label>
90      </li>
91
92      <li>
93        <label><span class="property">{lang:conf_history_admin}</span><input type="checkbox" name="history_admin" {history.HISTORY_ADMIN} /></label>
94      </li>
95  </ul>
96</fieldset>
97<!-- END history -->
98
99<!-- BEGIN comments -->
100<fieldset id="commentsConf">
101  <ul>
102    <li>
103      <label>
104        <span class="property">{lang:Comments for all}</span>
105        <input type="checkbox" name="comments_forall" {comments.COMMENTS_FORALL} />
106      </label>
107    </li>
108
109    <li>
110      <span class="property">
111        <label for="nb_comment_page">{lang:Number of comments per page}</label>
112      </span>
113      <input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{comments.NB_COMMENTS_PAGE}" />
114    </li>
115
116    <li>
117      <label>
118        <span class="property">{lang:Validation}</span>
119        <input type="checkbox" name="comments_validation" {comments.COMMENTS_VALIDATION} />
120      </label>
121    </li>
122
123
124    <li>
125      <label>
126        <span class="property">{lang:Email administrators when a valid comment is entered}</span>
127        <input type="checkbox" name="email_admin_on_comment" {comments.EMAIL_ADMIN_ON_COMMENT} />
128      </label>
129    </li>
130
131    <li>
132      <label>
133        <span class="property">{lang:Email administrators when a comment requires validation}</span>
134        <input type="checkbox" name="email_admin_on_comment_validation" {comments.EMAIL_ADMIN_ON_COMMENT_VALIDATION} />
135      </label>
136    </li>
137
138  </ul>
139</fieldset>
140<!-- END comments -->
141
142<!-- BEGIN default -->
143{PROFILE_CONTENT}
144<!-- END default -->
145
146<!-- BEGIN include_submit_buttons -->
147  <p>
148    <input class="submit" type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}>
149    <input class="submit" type="reset" name="reset" value="{lang:Reset}">
150  </p>
151<!-- END include_submit_buttons -->
152</form>
Note: See TracBrowser for help on using the repository browser.