aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstephenbroyer <stephen.broyer@sonarsource.com>2013-10-18 15:47:12 +0200
committerstephenbroyer <stephen.broyer@sonarsource.com>2013-10-18 15:47:12 +0200
commit42bd6b8bd3536dba0e756b8c8e0b9ae7dfcd94f6 (patch)
tree072c24cce2f7569900bf35ba626d29a75c0ef024
parent5ab7cddb443433a1bc4852404524de33374d0290 (diff)
downloadsonarqube-42bd6b8bd3536dba0e756b8c8e0b9ae7dfcd94f6.tar.gz
sonarqube-42bd6b8bd3536dba0e756b8c8e0b9ae7dfcd94f6.zip
SONAR-4759 Use modal windows in Groups pages
(small adjustements)
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/groups/_edit_form.html.erb2
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb4
2 files changed, 3 insertions, 3 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/_edit_form.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/_edit_form.html.erb
index 83304d66087..390e741c330 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/_edit_form.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/_edit_form.html.erb
@@ -1,7 +1,7 @@
<% form_for :group, @group, :url => { :action => 'update', :id => @group.id}, :html => { :id =>'group_form'} do |f| %>
<fieldset>
<div class="modal-head">
- <h2>Edit group&nbsp;<%= @group.name -%></h2>
+ <h2>Edit group: <%= @group.name -%></h2>
</div>
<div class="modal-body">
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
index ede6d8615df..a87665ec752 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/groups/index.html.erb
@@ -37,8 +37,8 @@
:class => 'link-action link-red',
:id => "delete-#{group.name}",
:confirm_button => message('delete'),
- :confirm_title => 'Delete group '+group.name,
- :confirm_msg => 'Are you sure that you want to delete this group? Members will not be deleted.?',
+ :confirm_title => 'Delete group: '+group.name,
+ :confirm_msg => 'Are you sure that you want to delete this group? Members will not be deleted.',
:confirm_msg_params => [group.name]
-%>
</td>