source: trunk/admin/themes/default/template/profile_content.tpl @ 12470

Last change on this file since 12470 was 12470, checked in by mistic100, 13 years ago

bug:2476 Increase the maximum display of thumbnails, now limited to 3 digits (999 thumbnails)

  • Property svn:eol-style set to LF
File size: 3.7 KB
RevLine 
[2526]1<form method="post" name="profile" action="{$F_ACTION}" id="profile" class="properties">
2
3  <fieldset>
4    <legend>{'Registration'|@translate}</legend>
[3185]5    <input type="hidden" name="redirect" value="{$REDIRECT}">
[2526]6    <ul>
7      <li>
8        <span class="property">{'Username'|@translate}</span>
9        {$USERNAME}
10      </li>
11{if not $SPECIAL_USER} {* can modify password + email*}
12      <li>
13        <span class="property">
14          <label for="mail_address">{'Email address'|@translate}</label>
15        </span>
16        <input type="text" name="mail_address" id="mail_address" value="{$EMAIL}">
17      </li>
18{if not $IN_ADMIN} {* admins do not need old password*}
19      <li>
20        <span class="property">
21          <label for="password">{'Password'|@translate}</label>
22        </span>
23        <input type="password" name="password" id="password" value="">
24      </li>
25{/if}
26      <li>
27        <span class="property">
[5021]28          <label for="use_new_pwd">{'New password'|@translate}</label>
[2526]29        </span>
30        <input type="password" name="use_new_pwd" id="use_new_pwd" value="">
31      </li>
32      <li>
33        <span class="property">
34          <label for="passwordConf">{'Confirm Password'|@translate}</label>
35        </span>
36        <input type="password" name="passwordConf" id="passwordConf" value="">
37      </li>
[3215]38{/if}
[2526]39    </ul>
40  </fieldset>
41
42  <fieldset>
[5021]43    <legend>{'Preferences'|@translate}</legend>
[2526]44
45    <ul>
46      <li>
47        <span class="property">
[10198]48          <label for="nb_image_page">{'Number of photos per page'|@translate}</label>
[2526]49        </span>
[12470]50        <input type="text" size="4" maxlength="3" name="nb_image_page" id="nb_image_page" value="{$NB_IMAGE_PAGE}">
[2526]51      </li>
[5996]52{if not $SPECIAL_USER}
[2526]53      <li>
54        <span class="property">
[5021]55          <label for="template">{'Interface theme'|@translate}</label>
[2526]56        </span>
[5306]57        {html_options id=template name=theme options=$template_options selected=$template_selection}
[2526]58      </li>
59      <li>
60        <span class="property">
[5931]61          <label for="language">{'Language'|@translate}</label>
[2526]62        </span>
[3008]63        {html_options id=language name=language options=$language_options selected=$language_selection}
[2526]64      </li>
[5996]65{/if}
[2526]66      <li>
67        <span class="property">
[5931]68          <label for="recent_period">{'Recent period'|@translate}</label>
[2526]69        </span>
70        <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{$RECENT_PERIOD}">
71      </li>
72      <li>
[6951]73        <span class="property">{'Expand all albums'|@translate}</span>
[2526]74        {html_radios name='expand' options=$radio_options selected=$EXPAND}
75      </li>
76      <li>
[5021]77        <span class="property">{'Show number of comments'|@translate}</span>
[2526]78        {html_radios name='show_nb_comments' options=$radio_options selected=$NB_COMMENTS}
79      </li>
80      <li>
[5021]81        <span class="property">{'Show number of hits'|@translate}</span>
[2526]82        {html_radios name='show_nb_hits' options=$radio_options selected=$NB_HITS}
83      </li>
84      <li>
85        <span class="property">
[8711]86          <label for="maxwidth">{'Maximum photo width'|@translate}</label>
[2526]87        </span>
88        <input type="text" size="4" maxlength="4" name="maxwidth" id="maxwidth" value="{$MAXWIDTH}">
89      </li>
90      <li>
91        <span class="property">
[8711]92          <label for="maxheight">{'Maximum photo height'|@translate}</label>
[2526]93        </span>
94        <input type="text" size="4" maxlength="4" name="maxheight" id="maxheight" value="{$MAXHEIGHT}">
95      </li>
96    </ul>
97  </fieldset>
98
99  <p class="bottomButtons">
[6897]100    <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
[2526]101    <input class="submit" type="submit" name="validate" value="{'Submit'|@translate}">
102    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
103  </p>
104
105</form>
Note: See TracBrowser for help on using the repository browser.