source: trunk/admin/template/goto/configuration.tpl @ 3283

Last change on this file since 3283 was 3283, checked in by plg, 15 years ago

complement to r3282, remove all $Id$ in source code.

  • Property svn:eol-style set to LF
File size: 5.8 KB
Line 
1
2{include file='include/autosize.inc.tpl'}
3
4<div class="titrePage">
5  <h2>{'title_configuration'|@translate} {$TABSHEET_TITLE}</h2>
6</div>
7
8{if !isset($default)}
9<form method="post" action="{$F_ACTION}" class="properties">
10{/if}
11
12{if isset($main)}
13<fieldset id="mainConf">
14  <legend></legend>
15  <ul>
16    <li>
17      <span class="property">
18        <label for="gallery_title">{'Gallery title'|@translate}</label>
19      </span>
20      <input type="text" maxlength="255" size="50" name="gallery_title" id="gallery_title" value="{$main.CONF_GALLERY_TITLE}">
21    </li>
22
23    <li>
24      <span class="property">
25        <label for="page_banner">{'Page banner'|@translate}</label>
26      </span>
27      <textarea rows="5" cols="50" class="description" name="page_banner" id="page_banner">{$main.CONF_PAGE_BANNER}</textarea>
28    </li>
29
30    <li>
31      <span class="property">
32        <label for="gallery_url">{'Gallery URL'|@translate}</label>
33      </span>
34      <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{$main.CONF_GALLERY_URL}">
35    </li>
36  </ul>
37</fieldset>
38
39<fieldset id="mainConfCheck">
40  <legend></legend>
41  <ul>
42    <li>
43      <label>
44        <span class="property">{'Lock gallery'|@translate}</span>
45        <input type="checkbox" name="gallery_locked" {if ($main.gallery_locked)}checked="checked"{/if}>
46      </label>
47    </li>
48
49    <li>
50      <label>
51        <span class="property">{'Rating'|@translate}</span>
52        <input type="checkbox" name="rate" {if ($main.rate)}checked="checked"{/if}>
53      </label>
54    </li>
55
56    <li>
57      <label>
58        <span class="property">{'Rating by guests'|@translate}</span>
59        <input type="checkbox" name="rate_anonymous" {if ($main.rate_anonymous)}checked="checked"{/if}>
60      </label>
61    </li>
62
63    <li>
64      <label>
65        <span class="property">{'Allow user registration'|@translate}</span>
66        <input type="checkbox" name="allow_user_registration" {if ($main.allow_user_registration)}checked="checked"{/if}>
67      </label>
68    </li>
69
70    <li>
71      <label>
72        <span class="property">{'obligatory_user_mail_address'|@translate}</span>
73        <input type="checkbox" name="obligatory_user_mail_address" {if ($main.obligatory_user_mail_address)}checked="checked"{/if}>
74      </label>
75    </li>
76
77    <li>
78      <label>
79        <span class="property">{'Email administrators when a new user registers'|@translate}</span>
80        <input type="checkbox" name="email_admin_on_new_user" {if ($main.email_admin_on_new_user)}checked="checked"{/if}>
81      </label>
82    </li>
83  </ul>
84</fieldset>
85{/if}
86
87{if isset($history)}
88<fieldset id="historyConf">
89  <legend></legend>
90  <ul>
91      <li>
92        <label><span class="property">{'conf_history_guest'|@translate}</span><input type="checkbox" name="history_guest" {if ($history.history_guest)}checked="checked"{/if}></label>
93      </li>
94
95      <li>
96        <label><span class="property">{'conf_history_user'|@translate}</span><input type="checkbox" name="log" {if ($history.log)}checked="checked"{/if}></label>
97      </li>
98
99      <li>
100        <label><span class="property">{'conf_history_admin'|@translate}</span><input type="checkbox" name="history_admin" {if ($history.history_admin)}checked="checked"{/if}></label>
101      </li>
102  </ul>
103</fieldset>
104{/if}
105
106
107{if isset($comments)}
108<fieldset id="commentsConf">
109  <legend></legend>
110  <ul>
111    <li>
112      <label>
113        <span class="property">{'Comments for all'|@translate}</span>
114        <input type="checkbox" name="comments_forall" {if ($comments.comments_forall)}checked="checked"{/if}>
115      </label>
116    </li>
117
118    <li>
119      <span class="property">
120        <label for="nb_comment_page">{'Number of comments per page'|@translate}</label>
121      </span>
122      <input type="text" size="3" maxlength="4" name="nb_comment_page" id="nb_comment_page" value="{$comments.NB_COMMENTS_PAGE}">
123    </li>
124
125    <li>
126      <label>
127        <span class="property">{'Validation'|@translate}</span>
128        <input type="checkbox" name="comments_validation" {if ($comments.comments_validation)}checked="checked"{/if}>
129      </label>
130    </li>
131
132
133    <li>
134      <label>
135        <span class="property">{'Email administrators when a valid comment is entered'|@translate}</span>
136        <input type="checkbox" name="email_admin_on_comment" {if ($comments.email_admin_on_comment)}checked="checked"{/if}>
137      </label>
138    </li>
139
140    <li>
141      <label>
142        <span class="property">{'Email administrators when a comment requires validation'|@translate}</span>
143        <input type="checkbox" name="email_admin_on_comment_validation" {if ($comments.email_admin_on_comment_validation)}checked="checked"{/if}>
144      </label>
145    </li>
146  </ul>
147</fieldset>
148{/if}
149
150{if isset($upload)}
151<fieldset id="uploadConf">
152  <legend></legend>
153  <ul>
154    <li>
155      <label><span class="property">{'Show upload link every time'|@translate}</span>
156      <input type="checkbox" name="upload_link_everytime" {if ($upload.upload_link_everytime)}checked="checked"{/if}></label>
157    </li>
158    <li>
159      <label><span class="property">{'User access level to upload'|@translate}</span>
160      {html_options name="upload_user_access" options=$upload.upload_user_access_options selected=$upload.upload_user_access_options_selected}
161      </label>
162    </li>
163    <li>
164      <label>
165        <span class="property">{'Email administrators when a picture is uploaded'|@translate}</span>
166        <input type="checkbox" name="email_admin_on_picture_uploaded" {if ($upload.email_admin_on_picture_uploaded)}checked="checked"{/if}>
167      </label>
168    </li>
169  </ul>
170</fieldset>
171{/if}
172
173{if isset($default)}
174{$PROFILE_CONTENT}
175{/if}
176
177{if !isset($default)}
178  <p>
179    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}>
180    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
181  </p>
182</form>
183{/if}
Note: See TracBrowser for help on using the repository browser.