GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
718 B

  1. %h1 Feeds
  2. %p= link_to "Fetch all", :fetch_all, :class => "button"
  3. %table
  4. %tr
  5. %th Title
  6. %th Feed URL
  7. %th Posts
  8. %th Fetched
  9. %th
  10. %th
  11. %th
  12. %th
  13. - @feeds.each do |f|
  14. %tr
  15. %td= link_to f.title, f
  16. %td= link_to f.feed_url, f.feed_url
  17. %td= f.posts.size
  18. %td
  19. - if f.last_fetched.nil?
  20. never
  21. - else
  22. = time_ago_in_words f.last_fetched
  23. ago
  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. #new_feed
  28. = render 'form'