9 lines
282 B
Plaintext
9 lines
282 B
Plaintext
<div style="background:red"><b><%= question.title%></b>
|
|
<%= semantic_form_for question, url: answer_survey_question_path do |f| %>
|
|
<%= f.input :selected, as: :check_boxes, collection: question.choices, label: false %>
|
|
|
|
<%= f.action :submit, :as => :input %>
|
|
|
|
<% end %>
|
|
</div>
|