1 <% cl = cycle("table0", "table1") %>
 
   5     <%= user_thumbnail(user) %>
 
   9       <% if user.creation_ip %>
 
  10         <%= raw t "users.index.summary",
 
  11                   :name => link_to(h(user.display_name), user_path(user)),
 
  12                   :ip_address => link_to(user.creation_ip, :ip => user.creation_ip),
 
  13                   :date => l(user.creation_time, :format => :friendly) %>
 
  15         <%= raw t "users.index.summary_no_ip",
 
  16                   :name => link_to(h(user.display_name), user_path(user)),
 
  17                   :date => l(user.creation_time, :format => :friendly) %>
 
  20     <div class="richtext"><%= user.description.to_html %></div>
 
  23     <%= check_box_tag "user_#{user.id}", "", false, :name => "user[#{user.id}]" %>