diff options
author | stephenbroyer <stephen.broyer@sonarsource.com> | 2013-10-18 15:34:12 +0200 |
---|---|---|
committer | stephenbroyer <stephen.broyer@sonarsource.com> | 2013-10-18 15:34:12 +0200 |
commit | 1f7af7bfcecf48d0f2fbc8104cc2e1e82578402e (patch) | |
tree | 559ca3132435cc6029354475a6590a963aeb8dbb /sonar-server | |
parent | cf32e1923ecb5cc6258693982b23744a358561a6 (diff) | |
download | sonarqube-1f7af7bfcecf48d0f2fbc8104cc2e1e82578402e.tar.gz sonarqube-1f7af7bfcecf48d0f2fbc8104cc2e1e82578402e.zip |
SONAR-4758 Use modal windows in Users pages
(put delete link at the side of changepassword)
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb index e0481b78cb4..12757c657b2 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb @@ -34,9 +34,7 @@ <td class="left" valign="top"> <a id="edit-<%= user.login -%>" class="open-modal link-action" href="<%=ApplicationController.root_context-%>/users/edit_form/<%= user.id -%>">Edit</a> - <%= link_to "Change password", { :id => user.id, :action => 'change_password_form'}, {:id => "change-password-#{u user.login}", :class => 'open-modal link-action'} %> - </td> - <td> + <%= link_to "Change password", { :id => user.id, :action => 'change_password_form'}, {:id => "change-password-#{u user.login}", :class => 'open-modal link-action'} %> <%= link_to_action message('delete'), "#{ApplicationController.root_context}/users/delete/#{user.id}", :class => 'link-action link-red', :id => "delete-#{user.login}", |