summaryrefslogtreecommitdiffstats
path: root/app/views/groups
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-17 02:54:03 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-17 02:54:03 +0000
commit8d72d4098b9692b521f3d023265a5476c93c84c2 (patch)
tree1e588f850fecce93bba189ca212f214738a95b38 /app/views/groups
parentf2842e214af83cbee17fe77f7a1922dc32723a60 (diff)
downloadredmine-8d72d4098b9692b521f3d023265a5476c93c84c2.tar.gz
redmine-8d72d4098b9692b521f3d023265a5476c93c84c2.zip
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
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/_users.html.erb54
1 files changed, 27 insertions, 27 deletions
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 @@
<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 => { :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>
+ <p class="nodata"><%= l(:label_no_data) %></p>
<% end %>
</div>
@@ -29,20 +29,20 @@
<% 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><%= 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 },
: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 %>