Guest User

Untitled

a guest
May 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #routes.rb
  2.  
  3. resources :topics do | topic |
  4. resources :notes
  5. end
  6.  
  7. #controller
  8.  
  9. def new
  10. @topic = Topic.first(:id => params[:topic.id])
  11. @note = Note.new
  12. render @note
  13. end
  14.  
  15.  
  16. #view
  17.  
  18. %h1
  19. New Note :
  20.  
  21. %p
  22. =form_for(@note, :action => resource(@topic,:notes)) do
  23. %p
  24. = text_field :title, :label => "Title"
  25. %p
  26. Note Details
  27. %br/
  28. =text_area :body, :rows => 15, :cols => 60
  29. %p
  30. = submit "Create"
  31. %p
  32. = link_to 'Back', resource(@topic)
Add Comment
Please, Sign In to add comment