Files
@ ae5ac36cdf83
Branch filter:
Location: kallithea/rhodecode/templates/admin/users/user_edit_my_account_form.html - annotation
ae5ac36cdf83
3.3 KiB
text/html
pull request: use unionrepo instead of outgoing
This makes it possible to look the 'moving target' symbols up in the right repo.
Using a revset with the right revisions also removes the need for pruning
changesets that are outside the requested range.
It will also not be confused by changesets that for some reason has been pulled
to the repo but haven't been merged yet. They are going to be 'merged' by the
'pull' request and should thus be a part of what is reviewed.
This makes it possible to look the 'moving target' symbols up in the right repo.
Using a revset with the right revisions also removes the need for pruning
changesets that are outside the requested range.
It will also not be confused by changesets that for some reason has been pulled
to the repo but haven't been merged yet. They are going to be 'merged' by the
'pull' request and should thus be a part of what is reviewed.
ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 4910b2607a29 4910b2607a29 4910b2607a29 4910b2607a29 4910b2607a29 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 6ce3387bf0ce ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 7ae36df760ce 7ae36df760ce ef71d7e63806 ef71d7e63806 ef71d7e63806 ef71d7e63806 86aa4f1f130b | <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">
%if c.ldap_dn:
${h.text('username',class_='medium disabled', readonly="readonly")}
%else:
${h.text('username',class_='medium')}
%endif:
</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">
${h.text('firstname',class_="medium")}
</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">
${h.submit('save',_('Save'),class_="ui-btn large")}
${h.reset('reset',_('Reset'),class_="ui-btn large")}
</div>
</div>
</div>
${h.end_form()}
</div>
|