Guest User

Untitled

a guest
Jun 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. -javascript 'post'
  2. = simple_form_for(@post) do |f|
  3. = render 'shared/error_messages', :target => @post
  4. .inputs
  5. = f.input :title
  6. = f.input :sequence
  7. = f.input :description, :input_html => {:rows =>5}
  8. = f.simple_fields_for :sections do |section_f|
  9. .section
  10. %h2 Section
  11. = section_f.input :heading
  12. = section_f.input :body, :input_html => {:rows =>5}
  13. = section_f.input :position
  14. = f.button :submit
  15.  
  16. = section_f.simple_fields_for :snippet do |snippet_f|
  17. .snippet
  18. %h3 Snippet
  19. = snippet_f.input :caption
  20. = snippet_f.input :content, :input_html => {:rows =>5}
  21. = snippet_f.input :language, :as => :select, :collection => coderay_languages
Add Comment
Please, Sign In to add comment