summaryrefslogtreecommitdiffstats
path: root/app/views/groups/_users.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/groups/_users.html.erb')
-rw-r--r--app/views/groups/_users.html.erb49
1 files changed, 49 insertions, 0 deletions
diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb
new file mode 100644
index 000000000..e471f52c7
--- /dev/null
+++ b/app/views/groups/_users.html.erb
@@ -0,0 +1,49 @@
+<div class="splitcontentleft">
+<% if @group.users.any? %>
+ <table class="list users">
+ <thead>
+ <th><%= l(:label_user) %></th>
+ <th style="width:15%"></th>
+ </thead>
+ <tbody>
+ <% @group.users.sort.each do |user| %>
+ <tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>">
+ <td class="user"><%= link_to_user user %></td>
+ <td class="buttons">
+ <%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user },
+ :method => :post },
+ :class => 'icon icon-del' %>
+ </td>
+ </tr>
+ <% end %>
+ </tbody>
+ </table>
+<% else %>
+ <p class="nodata"><%= l(:label_no_data) %></p>
+<% end %>
+</div>
+
+<div class="splitcontentright">
+<% users = User.active.find(:all, :limit => 100) - @group.users %>
+<% if users.any? %>
+ <% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
+ <fieldset><legend><%=l(:label_user_new)%></legend>
+
+ <p><%= text_field_tag 'user_search', nil, :size => "40" %></p>
+ <%= observe_field(:user_search,
+ :frequency => 0.5,
+ :update => :users,
+ :url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group },
+ :with => 'q')
+ %>
+
+ <div id="users">
+ <%= principals_check_box_tags 'user_ids[]', users %>
+ </div>
+
+ <p><%= submit_tag l(:button_add) %></p>
+ </fieldset>
+ <% end %>
+<% end %>
+
+</div>