Admin can change other users settings without user password #2646

This commit is contained in:
Priit Tark 2015-06-03 16:34:37 +03:00
parent 13b60d39ce
commit 4da89aaa87
9 changed files with 67 additions and 81 deletions

View file

@ -1,4 +1,5 @@
= form_for([:admin, @api_user], multipart: true, html: {class: 'form-horizontal'}) do |f|
= form_for([:admin, @api_user], multipart: true,
html: {class: 'form-horizontal', autocomplete: 'off'}) do |f|
= render 'shared/full_errors', object: @api_user
.row
@ -10,9 +11,11 @@
= f.text_field(:username, class: 'form-control')
.form-group
.col-md-4.control-label
= f.label :password
- not_required = @api_user.new_record? ? '' : 'not-required'
= f.label :password, class: not_required
.col-md-7
= f.text_field(:password, class: 'form-control')
= f.text_field :password, class: 'form-control', autocomplete: 'off'
.form-group
.col-md-4.control-label
= f.label :identity_code
@ -48,4 +51,5 @@
= button_tag(t(:save), class: 'btn btn-primary')
:coffee
Autocomplete.bindAdminRegistrarSearch();
Autocomplete.bindAdminRegistrarSearch()
$("#api_user_password").removeAttr('required')