2016-09-02 17:51:35 -05:00
|
|
|
<% answers = Array(question.answer) %>
|
|
|
|
<%= form.collection_check_boxes(:answer_array, question.input_options, :to_s, :to_s, {}, {class: 'checkbox'}) do | option | %>
|
|
|
|
<%
|
|
|
|
option_id = "#{question.question_id}#{sanitize_to_id(option.value)}"
|
|
|
|
checked = answers.include?(option.value) ? 'checked' : ''
|
|
|
|
%>
|
2016-07-30 16:25:09 -05:00
|
|
|
|
2016-08-09 23:17:35 -05:00
|
|
|
<div class="form-group-multiples">
|
2016-09-02 17:51:35 -05:00
|
|
|
<%= option.check_box( id: option_id, checked: checked, data: { last: checked } ) %>
|
|
|
|
<%= option.label(for: option_id) %>
|
2016-08-09 23:17:35 -05:00
|
|
|
</div>
|
2016-09-02 17:51:35 -05:00
|
|
|
|
2016-07-28 20:54:08 -05:00
|
|
|
<% end %>
|
2016-07-27 22:16:12 -05:00
|
|
|
|
2016-08-08 17:08:20 -05:00
|
|
|
<%= render partial: "quiz/answer_errors", locals: {question: question, answer: answer} %>
|