GeoRSS aggregator and Layar augmented reality server
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

16 行
266 B

  1. %h1 Users
  2. = link_to 'New User', new_user_path, :class => 'button'
  3. %table
  4. %tr
  5. %th Email
  6. %th Joined
  7. - @users.each do |user|
  8. %tr
  9. %td= link_to user.email, "mailto:#{user.email}"
  10. %td
  11. = time_ago_in_words(user.created_at)
  12. ago