GeoRSS aggregator and Layar augmented reality server
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.html.haml 425 B

1234567891011121314151617181920212223
  1. %h1 Listing users
  2. %table
  3. %tr
  4. %th Email
  5. %th Crypted password
  6. %th Salt
  7. %th
  8. %th
  9. %th
  10. - @users.each do |user|
  11. %tr
  12. %td= user.email
  13. %td= user.crypted_password
  14. %td= user.salt
  15. %td= link_to 'Show', user
  16. %td= link_to 'Edit', edit_user_path(user)
  17. %td= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete
  18. %br
  19. = link_to 'New User', new_user_path