]> source.dussan.org Git - redmine.git/commitdiff
replace tabs to spaces at app/views/users/index.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 23:11:01 +0000 (23:11 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 17 Sep 2011 23:11:01 +0000 (23:11 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7365 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/users/index.html.erb

index 80c83cb8dc1e6aa88a97f582579e9bf231b130c1..ce8c9e2f6582f97b14746cd1e4a57d551c477b4b 100644 (file)
 &nbsp;
 
 <div class="autoscroll">
-<table class="list">           
+<table class="list">    
   <thead><tr>
-       <%= sort_header_tag('login', :caption => l(:field_login)) %>
-       <%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
-       <%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
-       <%= sort_header_tag('mail', :caption => l(:field_mail)) %>
-       <%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %>
-       <%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %>
-       <%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %>
+  <%= sort_header_tag('login', :caption => l(:field_login)) %>
+  <%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
+  <%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
+  <%= sort_header_tag('mail', :caption => l(:field_mail)) %>
+  <%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %>
+  <%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %>
+  <%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %>
     <th></th>
   </tr></thead>
   <tbody>
 <% for user in @users -%>
   <tr class="user <%= cycle("odd", "even") %> <%= %w(anon active registered locked)[user.status] %>">
-       <td class="username"><%= avatar(user, :size => "14") %><%= link_to h(user.login), edit_user_path(user) %></td>
-       <td class="firstname"><%= h(user.firstname) %></td>
-       <td class="lastname"><%= h(user.lastname) %></td>
-       <td class="email"><%= mail_to(h(user.mail)) %></td>
-       <td align="center"><%= checked_image user.admin? %></td>
-       <td class="created_on" align="center"><%= format_time(user.created_on) %></td>
-       <td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
+  <td class="username"><%= avatar(user, :size => "14") %><%= link_to h(user.login), edit_user_path(user) %></td>
+  <td class="firstname"><%= h(user.firstname) %></td>
+  <td class="lastname"><%= h(user.lastname) %></td>
+  <td class="email"><%= mail_to(h(user.mail)) %></td>
+  <td align="center"><%= checked_image user.admin? %></td>
+  <td class="created_on" align="center"><%= format_time(user.created_on) %></td>
+  <td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
     <td class="buttons">
-       <%= change_status_link(user) %>
-       <%= link_to(l(:button_delete), user, :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del') unless User.current == user %>
+      <%= change_status_link(user) %>
+      <%= link_to(l(:button_delete), user, :confirm => l(:text_are_you_sure), :method => :delete, :class => 'icon icon-del') unless User.current == user %>
     </td>
   </tr>
 <% end -%>