Skip to content

Commit

Permalink
[#2760] split line
Browse files Browse the repository at this point in the history
  • Loading branch information
k-nut committed May 24, 2016
1 parent 1fddc84 commit ad63650
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ckan/templates/user/edit_user_form.html
Expand Up @@ -24,7 +24,15 @@

<fieldset>
<legend>{{ _('Change password') }}</legend>
{{ form.input('old_password', type='password', label=_('Sysadmin Password') if c.is_sysadmin else _('Old Password'), id='field-password', value=data.oldpassword, error=errors.oldpassword, classes=['control-medium'], attrs={'autocomplete': 'off'} ) }}
{{ form.input('old_password',
type='password',
label=_('Sysadmin Password') if c.is_sysadmin else _('Old Password'),
id='field-password',
value=data.oldpassword,
error=errors.oldpassword,
classes=['control-medium'],
attrs={'autocomplete': 'off'}
) }}

{{ form.input('password1', type='password', label=_('Password'), id='field-password', value=data.password1, error=errors.password1, classes=['control-medium'], attrs={'autocomplete': 'off'} ) }}

Expand Down

0 comments on commit ad63650

Please sign in to comment.