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.
 
 
 
 
 

24 lignes
512 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 :link, :size => 120
  16. = f.submit 'Save'
  17. -#
  18. .field
  19. = f.label :last_fetched
  20. = f.datetime_select :last_fetched
  21. .actions