<% if @users.empty? %> <%=l :no_users_registered %> <% else %> <% @users.each do |user| %> <% end %>
# <%=l :user_name %>
<%= link_to(user.id, :controller => 'user', :action => 'show', :id => user.id) %> <%= link_to(h(user.name), :controller => 'user', :action => 'show', :id => user.id) %>
<% end %>