forked from bofh/fetsite
10 lines
288 B
Plaintext
10 lines
288 B
Plaintext
<div style="background:red"><b><%= question.title%></b>
|
|
<%= form_for question, url: answer_survey_question_path do |f| %>
|
|
<%= f.check_box :selected, {as: :check_boxes, collection: question.choices, label: false}, ["1"] %>
|
|
|
|
<%= f.action :submit, :as => :input %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|