diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb
index 8aae4c5..805e514 100644
--- a/app/views/groups/_users.html.erb
+++ b/app/views/groups/_users.html.erb
@@ -1,25 +1,25 @@
<% if @group.users.any? %>
-
-
- <%= l(:label_user) %> |
- |
-
-
- <% @group.users.sort.each do |user| %>
-
- <%= link_to_user user %> |
-
- <%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user },
- :method => :post },
- :class => 'icon icon-del' %>
- |
-
- <% end %>
-
-
+
+
+ <%= l(:label_user) %> |
+ |
+
+
+ <% @group.users.sort.each do |user| %>
+
+ <%= link_to_user user %> |
+
+ <%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user },
+ :method => :post },
+ :class => 'icon icon-del' %>
+ |
+
+ <% end %>
+
+
<% else %>
-
<%= l(:label_no_data) %>
+
<%= l(:label_no_data) %>
<% end %>
@@ -29,20 +29,20 @@
<% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
+
<% end %>
<% end %>