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.

_form.html.haml 512 B

il y a 12 ans
il y a 12 ans
il y a 12 ans
il y a 12 ans
1234567891011121314151617181920212223
  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