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
|
|
|
|
2016-08-01 09:50:01 -05:00
|
|
|
<%= render partial: "candidate/answer_errors", locals: {question: question, answer: @answer} %>
|