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.
 
 
 
 
 

25 lignes
598 B

  1. = form_for @feed do |f|
  2. %h2 Add a feed
  3. -if @feed.errors.any?
  4. #error_explanation
  5. %h2= "#{pluralize(@feed.errors.count, "error")} prohibited this feed from being saved:"
  6. %ul
  7. - @feed.errors.full_messages.each do |msg|
  8. %li= msg
  9. .field
  10. -#
  11. = f.label :title
  12. = f.text_field :title
  13. .field
  14. = f.label "URL"
  15. = f.text_field :feed_url, :size => 120
  16. = f.hidden_field :new_layer_id, :value => @feed.new_layer_id
  17. = f.submit 'Save', :id => 'submit'
  18. -#
  19. .field
  20. = f.label :last_fetched
  21. = f.datetime_select :last_fetched
  22. .actions