##// END OF EJS Templates
Hide add repository button in admin repositories view if we...
Hide add repository button in admin repositories view if we don't have permission to create repositories

File last commit:

r3473:b30a842b beta
r3936:b02a5406 beta
Show More
user_edit_my_account_form.html
94 lines | 3.5 KiB | text/html | HtmlLexer
/ rhodecode / templates / admin / users / user_edit_my_account_form.html
highly improved performance of my_account page by removing super heavy htmlfill call on whole page
r2353 <div>
${h.form(url('admin_settings_my_account_update'),method='put')}
<div class="form">
<div class="field">
<div class="gravatar_box">
<div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(c.user.email)}"/></div>
<p>
%if c.use_gravatar:
<strong>${_('Change your avatar at')} <a href="http://gravatar.com">gravatar.com</a></strong>
<br/>${_('Using')} ${c.user.email}
%else:
<br/>${c.user.email}
%endif
</p>
</div>
</div>
<div class="field">
<div class="label">
<label>${_('API key')}</label> ${c.user.api_key}
</div>
</div>
show ip for my account, and only in editing your user, showing in all users next to API key is misleading
r3455 <div class="field">
codecleaner
r3473 <div class="label">
<label>${_('Current IP')}:</label> ${c.perm_user.ip_addr or "?"}
</div>
show ip for my account, and only in editing your user, showing in all users next to API key is misleading
r3455 </div>
highly improved performance of my_account page by removing super heavy htmlfill call on whole page
r2353 <div class="fields">
<div class="field">
<div class="label">
<label for="username">${_('Username')}:</label>
</div>
<div class="input">
fixes issue #658, my account edit was missing this functionality
r3159 %if c.ldap_dn:
${h.text('username',class_='medium disabled', readonly="readonly")}
%else:
${h.text('username',class_='medium')}
%endif:
highly improved performance of my_account page by removing super heavy htmlfill call on whole page
r2353 </div>
</div>
<div class="field">
<div class="label">
<label for="new_password">${_('New password')}:</label>
</div>
<div class="input">
${h.password('new_password',class_="medium",autocomplete="off")}
</div>
</div>
<div class="field">
<div class="label">
<label for="password_confirmation">${_('New password confirmation')}:</label>
</div>
<div class="input">
${h.password('password_confirmation',class_="medium",autocomplete="off")}
</div>
</div>
<div class="field">
<div class="label">
<label for="name">${_('First Name')}:</label>
</div>
<div class="input">
Renamed name to firstname in forms...
r2544 ${h.text('firstname',class_="medium")}
highly improved performance of my_account page by removing super heavy htmlfill call on whole page
r2353 </div>
</div>
<div class="field">
<div class="label">
<label for="lastname">${_('Last Name')}:</label>
</div>
<div class="input">
${h.text('lastname',class_="medium")}
</div>
</div>
<div class="field">
<div class="label">
<label for="email">${_('Email')}:</label>
</div>
<div class="input">
${h.text('email',class_="medium")}
</div>
</div>
<div class="buttons">
removed deprecated ui-button
r2607 ${h.submit('save',_('Save'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
highly improved performance of my_account page by removing super heavy htmlfill call on whole page
r2353 </div>
</div>
</div>
${h.end_form()}
white space cleanup
r2367 </div>