<% if !user_signed_in? then %>
<%= simple_format Setting.welcome_body %>
<% end %>
<% if ((can? :read, User) && (@recent_user_names.count > 1)) then %>
New People: (say hi!)
<% @recent_user_names.each do |user| %>
<% if can? :read, user %>
<%= link_to user.name, user %> <%= raw(user.member_status_symbol) %> (Signed up <%= user.created_at.strftime("%b %d") %>)
<% end %>
<% end %>
<% end %>
Cool Stats:
# of People in this DB:
<%= @num_users %> (<%= @recent_users %> new in the last 7 days)
# of People Certified:
<%= @num_certs %> (<%= @recent_certs %> new in the last 7 days)