skill-assessment-app/app/views/quiz/_checkbox.html.erb

18 lines
582 B
Plaintext
Raw Normal View History

2016-07-28 20:54:08 -05:00
<%
2016-07-30 16:25:09 -05:00
question.input_options.each_with_index do | option, i |
option_id = "#{question.question_id}_#{i}"
checkbox_html = {class: 'checkbox',
id: "answer_#{option_id}",
name: "answer[checkbox][]",
checked: Array(question.answer).include?(option)
}
2016-07-28 20:54:08 -05:00
%>
<div class="form-group-multiples">
2016-07-30 16:25:09 -05:00
<%= form.check_box(:answer, checkbox_html, option, '') %>
<%= form.label(option_id, option) %>
2016-07-28 20:54:08 -05:00
</div>
<% end %>
2016-07-27 22:16:12 -05:00
<%= render partial: "quiz/answer_errors", locals: {question: question, answer: @answer} %>