##// END OF EJS Templates
moved refresh of pull request overview to left, it's more intuitive to be there
moved refresh of pull request overview to left, it's more intuitive to be there

File last commit:

r2607:7ae36df7 beta
r2871:b54d1024 beta
Show More
user_edit_my_account_form.html
85 lines | 3.2 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>
<div class="fields">
<div class="field">
<div class="label">
<label for="username">${_('Username')}:</label>
</div>
<div class="input">
${h.text('username',class_="medium")}
</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>