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 601 B

il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
123456789101112131415161718192021222324252627282930
  1. %h1 Feeds
  2. %table
  3. %tr
  4. %th Title
  5. %th Feed URL
  6. %th Posts
  7. %th Fetched
  8. %th
  9. %th
  10. %th
  11. %th
  12. - @feeds.each do |f|
  13. %tr
  14. %td= link_to f.title, f
  15. %td= link_to f.feed_url, f.feed_url
  16. %td= f.posts.size
  17. %td
  18. - if f.last_fetched.nil?
  19. never
  20. - else
  21. = time_ago_in_words f.last_fetched
  22. ago
  23. %td= link_to "Fetch", fetch_feed_url(f)
  24. %td= link_to 'Edit', edit_feed_path(f)
  25. %td= link_to 'Delete', f, :confirm => "Delete #{f.title} and all its posts?", :method => :delete
  26. #new_feed
  27. = render 'form'