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.
 
 
 
 
 

34 lignes
653 B

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