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.
 
 
 
 
 

30 lignes
517 B

  1. %h1= link_to @feed.title, @feed.url
  2. %p= @feed.description
  3. %p
  4. = pluralize(@feed.posts.size, "post")
  5. %p
  6. = link_to @feed.feed_url, @feed.feed_url
  7. %p
  8. - if @feed.last_fetched.nil?
  9. This feed has never been fetched
  10. - else
  11. Last fetched
  12. = time_ago_in_words @feed.last_fetched
  13. ago
  14. %table
  15. - @feed.posts.each do |p|
  16. %tr
  17. %td= link_to p.title, p.url
  18. %td= p.loc['lat']
  19. %td= p.loc['lng']
  20. %td= p.published
  21. = link_to 'Edit', edit_feed_path(@feed)
  22. \|
  23. = link_to 'Back', :root