diff options
author | flop25 <flop25@piwigo.org> | 2014-08-15 16:14:43 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2014-08-15 16:14:43 +0000 |
commit | 416233c2e467ff2bae8de82367f53fcae6f677f7 (patch) | |
tree | bfdf8779fdcf83346ec8cc8a817639d58024ca44 /admin/themes/default/template/configuration.tpl | |
parent | 557fccb9a10f41329ff16061b1395397771d3960 (diff) |
bug:3122
removed admin files profile.tpl and profile_content.tpl, integrated in configuration.tpl
take into account default_user_id with a message
prefix for template var, to avoid overwriting of already existing vars especially in admin panel
git-svn-id: http://piwigo.org/svn/trunk@29221 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/configuration.tpl')
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 51 |
1 files changed, 50 insertions, 1 deletions
diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index f11390878..0f0a80e20 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -854,6 +854,55 @@ jQuery("input[name='mail_theme']").change(function() { {if isset($default)} <div id="configContent"> -{$PROFILE_CONTENT} +<form method="post" name="profile" action="{$GUEST_F_ACTION}" id="profile" class="properties"> + +{if $GUEST_USERNAME!='guest'} + <fieldset> + {'The settings for the guest are from the %s user'|@translate:$GUEST_USERNAME} + </fieldset> +{/if} + + <fieldset> + <legend>{'Preferences'|@translate}</legend> + <input type="hidden" name="redirect" value="{$GUEST_REDIRECT}"> + + <ul> + <li> + <span class="property"> + <label for="nb_image_page">{'Number of photos per page'|@translate}</label> + </span> + <input type="text" size="4" maxlength="3" name="nb_image_page" id="nb_image_page" value="{$GUEST_NB_IMAGE_PAGE}"> + </li> + <li> + <span class="property"> + <label for="recent_period">{'Recent period'|@translate}</label> + </span> + <input type="text" size="3" maxlength="2" name="recent_period" id="recent_period" value="{$GUEST_RECENT_PERIOD}"> + </li> + <li> + <span class="property">{'Expand all albums'|@translate}</span> + {html_radios name='expand' options=$radio_options selected=$GUEST_EXPAND} + </li> + {if $GUEST_ACTIVATE_COMMENTS} + <li> + <span class="property">{'Show number of comments'|@translate}</span> + {html_radios name='show_nb_comments' options=$radio_options selected=$GUEST_NB_COMMENTS} + </li> + {/if} + <li> + <span class="property">{'Show number of hits'|@translate}</span> + {html_radios name='show_nb_hits' options=$radio_options selected=$GUEST_NB_HITS} + </li> + </ul> + </fieldset> + + <p class="bottomButtons"> + <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}"> + <input class="submit" type="submit" name="validate" value="{'Submit'|@translate}"> + <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}"> + </p> + +</form> + </div> {/if} |