Last active
August 29, 2015 14:06
-
-
Save kiote/ac36155a23bcb64d636a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ContsestContorller | |
# TODO: some ugly logic here, it's better to add it to Survey gem? | |
# | |
def show | |
q = survey.questions.first | |
@total_answers = Survey::Answer.where(question: q).count | |
@options_answers = [] | |
q.options.each do |o| | |
@options_answers << { count: Survey::Answer.where(question: q, option: o).count, text: o.text } | |
end | |
end | |
# | |
# show.html.erb | |
# | |
Total answers: <%= @total_answers %><br/> | |
<% @options_answers.each do |o| %> | |
<%= o[:text] %>:<%= o[:count] %><br/> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment