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
This commit is contained in:
Toshi MARUYAMA 2011-09-17 02:54:03 +00:00
parent f2842e214a
commit 8d72d4098b
1 changed files with 27 additions and 27 deletions

View File

@ -1,25 +1,25 @@
<div class="splitcontentleft"> <div class="splitcontentleft">
<% if @group.users.any? %> <% if @group.users.any? %>
<table class="list users"> <table class="list users">
<thead><tr> <thead><tr>
<th><%= l(:label_user) %></th> <th><%= l(:label_user) %></th>
<th style="width:15%"></th> <th style="width:15%"></th>
</tr></thead> </tr></thead>
<tbody> <tbody>
<% @group.users.sort.each do |user| %> <% @group.users.sort.each do |user| %>
<tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>"> <tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>">
<td class="user"><%= link_to_user user %></td> <td class="user"><%= link_to_user user %></td>
<td class="buttons"> <td class="buttons">
<%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user }, <%= link_to_remote l(:button_delete), { :url => { :controller => 'groups', :action => 'remove_user', :id => @group, :user_id => user },
:method => :post }, :method => :post },
:class => 'icon icon-del' %> :class => 'icon icon-del' %>
</td> </td>
</tr> </tr>
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
<% else %> <% else %>
<p class="nodata"><%= l(:label_no_data) %></p> <p class="nodata"><%= l(:label_no_data) %></p>
<% end %> <% end %>
</div> </div>
@ -29,20 +29,20 @@
<% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %> <% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %>
<fieldset><legend><%=l(:label_user_new)%></legend> <fieldset><legend><%=l(:label_user_new)%></legend>
<p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p> <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p>
<%= observe_field(:user_search, <%= observe_field(:user_search,
:frequency => 0.5, :frequency => 0.5,
:update => :users, :update => :users,
:url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group }, :url => { :controller => 'groups', :action => 'autocomplete_for_user', :id => @group },
:with => 'q') :with => 'q')
%> %>
<div id="users"> <div id="users">
<%= principals_check_box_tags 'user_ids[]', users %> <%= principals_check_box_tags 'user_ids[]', users %>
</div> </div>
<p><%= submit_tag l(:button_add) %></p> <p><%= submit_tag l(:button_add) %></p>
</fieldset> </fieldset>
<% end %> <% end %>
<% end %> <% end %>