replace tabs to spaces at app/views/repositories/committers.html.erb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7289 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-17 04:06:46 +00:00
parent e4590ad399
commit 4f132c7f3d

View File

@ -9,26 +9,26 @@
<% form_tag({}) do %> <% form_tag({}) do %>
<table class="list"> <table class="list">
<thead> <thead>
<tr> <tr>
<th><%= l(:field_login) %></th> <th><%= l(:field_login) %></th>
<th><%= l(:label_user) %></th> <th><%= l(:label_user) %></th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<% i = 0 -%> <% i = 0 -%>
<% @committers.each do |committer, user_id| -%> <% @committers.each do |committer, user_id| -%>
<tr class="<%= cycle 'odd', 'even' %>"> <tr class="<%= cycle 'odd', 'even' %>">
<td><%=h committer %></td> <td><%=h committer %></td>
<td> <td>
<%= hidden_field_tag "committers[#{i}][]", committer %> <%= hidden_field_tag "committers[#{i}][]", committer %>
<%= select_tag "committers[#{i}][]", content_tag('option', "-- #{l :actionview_instancetag_blank_option} --", :value => '') + options_from_collection_for_select(@users, 'id', 'name', user_id.to_i) %> <%= select_tag "committers[#{i}][]", content_tag('option', "-- #{l :actionview_instancetag_blank_option} --", :value => '') + options_from_collection_for_select(@users, 'id', 'name', user_id.to_i) %>
</td> </td>
</tr> </tr>
<% i += 1 -%> <% i += 1 -%>
<% end -%> <% end -%>
</tbody> </tbody>
</table> </table>
<p><%= submit_tag(l(:button_update)) %></p> <p><%= submit_tag(l(:button_update)) %></p>
<% end %> <% end %>
<% end %> <% end %>