diff app/views/groups/_users.html.erb @ 909:cbb26bc654de redmine-1.3

Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author Chris Cannam
date Fri, 24 Feb 2012 19:09:32 +0000
parents cbce1fd3b1b7
children 433d4f72a19b
line wrap: on
line diff
--- a/app/views/groups/_users.html.erb	Fri Feb 24 18:36:29 2012 +0000
+++ b/app/views/groups/_users.html.erb	Fri Feb 24 19:09:32 2012 +0000
@@ -1,48 +1,47 @@
 <div class="splitcontentleft">
 <% if @group.users.any? %>
-	<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">
-			      <%= 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>
+  <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">
+            <%= link_to_remote l(:button_delete), { :url => group_user_path(@group, :user_id => user), :method => :delete }, :class => 'icon icon-del' %>
+        </td>
+      </tr>
+    <% end %>
+    </tbody>
+  </table>
 <% else %>
-	<p class="nodata"><%= l(:label_no_data) %></p>
+  <p class="nodata"><%= l(:label_no_data) %></p>
 <% end %>
 </div>
 
 <div class="splitcontentright">
 <% 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| %>
+  <% remote_form_for(@group, :url => group_users_path(@group), :html => {:method => :post}) do |f| %>
     <fieldset><legend><%=l(:label_user_new)%></legend>
-    
-		<p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
-		<%= observe_field(:user_search,
+
+    <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
+    <%= observe_field(:user_search,
                  :frequency => 0.5,
                  :update => :users,
-                 :url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group },
+                 :url => autocomplete_for_user_group_path(@group),
+                 :method => :get,
                  :with => 'q')
                   %>
-		
-		<div id="users">
-			<%= principals_check_box_tags 'user_ids[]', users %>
-		</div>
-   	
+
+    <div id="users">
+      <%= principals_check_box_tags 'user_ids[]', users %>
+    </div>
+
     <p><%= submit_tag l(:button_add) %></p>
-		</fieldset>
+    </fieldset>
   <% end %>
 <% end %>