Skip to content

Instantly share code, notes, and snippets.

@Henryvw
Created August 13, 2014 14:34
Show Gist options
  • Save Henryvw/5d862cf19ddc34502e4c to your computer and use it in GitHub Desktop.
Save Henryvw/5d862cf19ddc34502e4c to your computer and use it in GitHub Desktop.
= form_for @rehearsal do |f|
.field
= f.label :tally
= f.number_field :tally
/ = render "e_answer_fields", :f => e_builder
%p
%b Questions:
- @exercise.e_questions.each do |e_question|
%tr
%td= e_question.question
%p
.field
= f.fields_for :e_answers do |e_builder|
= e_builder.label :answer, "Answer"
= e_builder.text_area :answer
.actions
= f.submit 'Save'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment