_users.html.erb
39 lines
| 1.2 KiB
| text/plain
|
TextLexer
|
r2755 | <div class="splitcontentleft"> | ||
<% if @group.users.any? %> | ||||
|
r7157 | <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"> | ||||
|
r9847 | <%= delete_link group_user_path(@group, :user_id => user), :remote => true %> | ||
|
r7157 | </td> | ||
</tr> | ||||
<% end %> | ||||
</tbody> | ||||
</table> | ||||
|
r2755 | <% else %> | ||
|
r7157 | <p class="nodata"><%= l(:label_no_data) %></p> | ||
|
r2755 | <% end %> | ||
</div> | ||||
<div class="splitcontentright"> | ||||
|
r9346 | <%= form_for(@group, :remote => true, :url => group_users_path(@group), | ||
:html => {:method => :post}) do |f| %> | ||||
|
r2755 | <fieldset><legend><%=l(:label_user_new)%></legend> | ||
|
r7152 | |||
|
r7157 | <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p> | ||
|
r10970 | <%= javascript_tag "observeSearchfield('user_search', null, '#{ escape_javascript autocomplete_for_user_group_path(@group) }')" %> | ||
|
r7220 | |||
|
r7157 | <div id="users"> | ||
|
r10970 | <%= render_principals_for_new_group_users(@group) %> | ||
|
r7157 | </div> | ||
|
r7220 | |||
|
r2755 | <p><%= submit_tag l(:button_add) %></p> | ||
|
r7157 | </fieldset> | ||
|
r2755 | <% end %> | ||
</div> | ||||