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 386 B

il y a 12 ans
il y a 12 ans
il y a 12 ans
123456789101112131415
  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. = f.label "URL"
  11. = f.text_field :feed_url, :size => 120
  12. = f.submit 'Save', :id => 'submit'
  13. .actions