Files
@ 0a0595b15c6c
Branch filter:
Location: kallithea/kallithea/templates/admin/users/user_edit_profile.html
0a0595b15c6c
4.4 KiB
text/html
auth: make sure that users only can manage their own primary data if self registration is enabled
With the UI showing exactly which fields are used and which are ignored, there
is no reason to show the 'External Source of Record' warning.
With the UI showing exactly which fields are used and which are ignored, there
is no reason to show the 'External Source of Record' warning.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | ${h.form(url('update_user', id=c.user.user_id),method='put')}
<div class="form">
<div class="field">
<div class="gravatar_box">
<div class="gravatar">${h.gravatar(c.user.email)}</div>
<p>
%if c.visual.use_gravatar:
<strong>${_('Change avatar at')} <a href="http://gravatar.com">gravatar.com</a></strong>
<br/>${_('Using')} ${c.user.email}
%else:
<strong>${_('Avatars are disabled')}</strong>
<br/>${c.user.email or _('Missing email, please update this user email address.')}
##show current ip just if we show ourself
%if c.authuser.username == c.user.username:
[${_('Current IP')}: ${c.ip_addr}]
%endif
%endif
</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', readonly=c.readonly('username'))}
</div>
</div>
<div class="field">
<div class="label">
<label for="email">${_('Email')}:</label>
</div>
<div class="input">
${h.text('email',class_='medium', readonly=c.readonly('email'))}
</div>
</div>
<div class="field">
<div class="label">
<label for="extern_type">${_('Source of Record')}:</label>
</div>
<div class="input">
${h.text('extern_type',class_='medium',readonly="readonly")}
</div>
</div>
<div class="field">
<div class="label">
<label for="extern_name">${_('Name in Source of Record')}:</label>
</div>
<div class="input">
${h.text('extern_name',class_='medium',readonly="readonly")}
</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',readonly=c.readonly('password'))}
</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",readonly=c.readonly('password'))}
</div>
</div>
<div class="field">
<div class="label">
<label for="firstname">${_('First Name')}:</label>
</div>
<div class="input">
${h.text('firstname',class_='medium', readonly=c.readonly('firstname'))}
</div>
</div>
<div class="field">
<div class="label">
<label for="lastname">${_('Last Name')}:</label>
</div>
<div class="input">
${h.text('lastname',class_='medium', readonly=c.readonly('lastname'))}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="active">${_('Active')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('active',value=True, readonly=c.readonly('active'))}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="admin">${_('Admin')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('admin',value=True, readonly=c.readonly('admin'))}
</div>
</div>
<div class="buttons">
${h.submit('save',_('Save'),class_="btn")}
${h.reset('reset',_('Reset'),class_="btn")}
</div>
</div>
</div>
${h.end_form()}
|