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.
 
 
 
 
 

39 lignes
786 B

  1. %h1 Apollo
  2. #new_feed
  3. = render 'form'
  4. %p= link_to "Fetch all", :fetch_all, :class => "button"
  5. %table
  6. %tr
  7. %th
  8. %th Posts
  9. %th Fetched
  10. %th
  11. %th
  12. %th
  13. - @feeds.each do |f|
  14. %tr
  15. %td
  16. .feed_title
  17. = link_to f.title, f
  18. %td.right= f.posts.count
  19. %td
  20. - if f.last_fetched.nil?
  21. never
  22. - else
  23. = (time_ago_in_words(f.last_fetched) + " ago").gsub(/ +/, " ").html_safe
  24. %td= link_to "Fetch", fetch_feed_url(f), :class => "button"
  25. %td= link_to 'Edit', edit_feed_path(f), :class => "button"
  26. %td= link_to 'Delete', f, :confirm => "Delete #{f.title} and all its posts?", :method => :delete, :class => "button"
  27. %tr
  28. %td
  29. %td.right= Post.count
  30. %td
  31. %td
  32. %td
  33. %td