<% 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 %>
<% else %>
<%= l(:label_no_data) %>
<% end %>
<% users = User.active.not_in_group(@group).all(:limit => 100) %>
<% if users.any? %>
<% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
<% end %>
<% end %>