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.
 
 
 
 
 

52 lines
1.0 KiB

  1. %h1
  2. Layer:
  3. = @layer.name
  4. %p
  5. API URL:
  6. = "#{request.protocol}#{request.host_with_port}/posts/near.json?layer_id=#{@layer.id}"
  7. %h2 Feeds
  8. #new_feed
  9. = render 'feeds/form'
  10. %p= link_to "Fetch all", :fetch_all, :class => "button"
  11. %table
  12. %tr
  13. %th
  14. %th Posts
  15. %th Fetched
  16. %th
  17. %th
  18. %th
  19. - @layer.feeds.each do |f|
  20. %tr
  21. %td
  22. .feed_title
  23. = link_to f.title, f
  24. %td.right= f.posts.count
  25. %td
  26. - if f.last_fetched.nil?
  27. never
  28. - else
  29. = (time_ago_in_words(f.last_fetched) + " ago").gsub(/ +/, " ").html_safe
  30. %td= link_to "Fetch", fetch_feed_url(f), :class => "button"
  31. %td= link_to 'Edit', edit_feed_path(f), :class => "button"
  32. %td= link_to 'Delete', f, :confirm => "Delete #{f.title} and all its posts?", :method => :delete, :class => "button"
  33. %tr
  34. %td
  35. %td.right [number of posts in this layer]
  36. %td
  37. %td
  38. %td
  39. %td
  40. = link_to 'Edit', edit_layer_path(@layer)
  41. \|
  42. = link_to 'Back', layers_path