source: trunk/admin/themes/default/template/configuration_default.tpl @ 29539

Last change on this file since 29539 was 29539, checked in by mistic100, 10 years ago

use fontello for every checkbox on config screens + split configuration.tpl file

File size: 2.0 KB
Line 
1{combine_script id='common' load='footer' path='admin/themes/default/js/common.js'}
2
3<h2>{'Piwigo configuration'|translate} {$TABSHEET_TITLE}</h2>
4
5<form method="post" name="profile" action="{$GUEST_F_ACTION}" id="profile" class="properties">
6
7<div id="configContent">
8
9{if $GUEST_USERNAME!='guest'}
10  <fieldset>
11      {'The settings for the guest are from the %s user'|translate:$GUEST_USERNAME}
12  </fieldset>
13{/if}
14
15  <fieldset>
16    <legend>{'Preferences'|translate}</legend>
17    <input type="hidden" name="redirect" value="{$GUEST_REDIRECT}">
18
19    <ul>
20      <li>
21        <span class="property">
22          <label for="nb_image_page">{'Number of photos per page'|translate}</label>
23        </span>
24        <input type="text" size="4" maxlength="3" name="nb_image_page" id="nb_image_page" value="{$GUEST_NB_IMAGE_PAGE}">
25      </li>
26
27      <li>
28        <span class="property">
29          <label for="recent_period">{'Recent period'|translate}</label>
30        </span>
31        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{$GUEST_RECENT_PERIOD}">
32      </li>
33
34      <li>
35        <span class="property">{'Expand all albums'|translate}</span>
36        {html_radios name='expand' options=$radio_options selected=$GUEST_EXPAND}
37      </li>
38
39    {if $GUEST_ACTIVATE_COMMENTS}
40      <li>
41        <span class="property">{'Show number of comments'|translate}</span>
42        {html_radios name='show_nb_comments' options=$radio_options selected=$GUEST_NB_COMMENTS}
43      </li>
44    {/if}
45
46      <li>
47        <span class="property">{'Show number of hits'|translate}</span>
48        {html_radios name='show_nb_hits' options=$radio_options selected=$GUEST_NB_HITS}
49      </li>
50    </ul>
51  </fieldset>
52
53  <p class="bottomButtons">
54    <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
55    <input class="submit" type="submit" name="validate" value="{'Submit'|translate}">
56    <input class="submit" type="reset" name="reset" value="{'Reset'|translate}">
57  </p>
58
59</div>
60
61</form>
Note: See TracBrowser for help on using the repository browser.