Files
fetsite/app/views/survey/questions/_answeredquestion.html.erb
2015-07-30 14:03:07 +02:00

10 lines
236 B
Plaintext

<div style="background:red"><b><%= answeredquestion.title%></b>
<ul>
<% answeredquestion.choices.each do |c| %>
<li>
<%= c.to_s %><%= answeredquestion.answers.where(choice_id: c.id).count %>
</li>
<% end %>
</ul>
</div>