2009-09-12 12:36:46 +04:00
|
|
|
<div class="splitcontentleft">
|
|
|
|
<% if @group.users.any? %>
|
2011-09-17 06:54:03 +04:00
|
|
|
<table class="list users">
|
|
|
|
<thead><tr>
|
|
|
|
<th><%= l(:label_user) %></th>
|
|
|
|
<th style="width:15%"></th>
|
|
|
|
</tr></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">
|
2012-07-18 21:34:11 +04:00
|
|
|
<%= delete_link group_user_path(@group, :user_id => user), :remote => true %>
|
2011-09-17 06:54:03 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2009-09-12 12:36:46 +04:00
|
|
|
<% else %>
|
2011-09-17 06:54:03 +04:00
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
2009-09-12 12:36:46 +04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
2012-04-25 21:17:49 +04:00
|
|
|
<%= form_for(@group, :remote => true, :url => group_users_path(@group),
|
|
|
|
:html => {:method => :post}) do |f| %>
|
2009-09-12 12:36:46 +04:00
|
|
|
<fieldset><legend><%=l(:label_user_new)%></legend>
|
2011-09-17 06:51:13 +04:00
|
|
|
|
2011-09-17 06:54:03 +04:00
|
|
|
<p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
|
2013-01-18 21:57:16 +04:00
|
|
|
<%= javascript_tag "observeSearchfield('user_search', null, '#{ escape_javascript autocomplete_for_user_group_path(@group) }')" %>
|
2011-09-17 16:07:11 +04:00
|
|
|
|
2011-09-17 06:54:03 +04:00
|
|
|
<div id="users">
|
2013-01-18 21:57:16 +04:00
|
|
|
<%= render_principals_for_new_group_users(@group) %>
|
2011-09-17 06:54:03 +04:00
|
|
|
</div>
|
2011-09-17 16:07:11 +04:00
|
|
|
|
2009-09-12 12:36:46 +04:00
|
|
|
<p><%= submit_tag l(:button_add) %></p>
|
2011-09-17 06:54:03 +04:00
|
|
|
</fieldset>
|
2009-09-12 12:36:46 +04:00
|
|
|
<% end %>
|
|
|
|
</div>
|