From: Toshi MARUYAMA Date: Sat, 17 Sep 2011 02:54:03 +0000 (+0000) Subject: replace tabs to spaces at app/views/groups/_users.html.erb X-Git-Tag: 1.3.0~691 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8d72d4098b9692b521f3d023265a5476c93c84c2;p=redmine.git replace tabs to spaces at app/views/groups/_users.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7277 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb index 8aae4c5c1..805e5140a 100644 --- a/app/views/groups/_users.html.erb +++ b/app/views/groups/_users.html.erb @@ -1,25 +1,25 @@
<% if @group.users.any? %> - - - - - - - <% @group.users.sort.each do |user| %> - - - - - <% end %> - -
<%= l(:label_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' %> -
+ + + + + + + <% @group.users.sort.each do |user| %> + + + + + <% end %> + +
<%= l(:label_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' %> +
<% else %> -

<%= l(:label_no_data) %>

+

<%= l(:label_no_data) %>

<% end %>
@@ -29,20 +29,20 @@ <% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
<%=l(:label_user_new)%> -

<%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %>

- <%= observe_field(:user_search, +

<%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %>

+ <%= observe_field(:user_search, :frequency => 0.5, :update => :users, :url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group }, :with => 'q') %> - -
- <%= principals_check_box_tags 'user_ids[]', users %> -
- + +
+ <%= principals_check_box_tags 'user_ids[]', users %> +
+

<%= submit_tag l(:button_add) %>

-
+ <% end %> <% end %>