X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/01bd9222d9ddec98586fb7c30413ab298d07b8a7..269c76d5c3935d915a15dd8e9167321bdea5faf0:/app/controllers/election_controller.rb diff --git a/app/controllers/election_controller.rb b/app/controllers/election_controller.rb index bfef021..571b936 100644 --- a/app/controllers/election_controller.rb +++ b/app/controllers/election_controller.rb @@ -173,7 +173,7 @@ class ElectionController < ApplicationController def results @election = Election.find( params[:id] ) votes = [] - + @election.voters.each do |voter| if voter.vote and voter.vote.confirmed? votes << voter.vote.rankings.sort.collect {|vote| vote.candidate_id} @@ -186,6 +186,7 @@ class ElectionController < ApplicationController @candidates_by_id = {} @election.candidates.each {|cand| @candidates_by_id[cand.id] = cand} + end def detailed_results @@ -194,7 +195,8 @@ class ElectionController < ApplicationController @voter_list = [] @vote_list = [] - @election.voters. each do |voter| + + @election.voters.each do |voter| if voter.vote and voter.vote.confirmed? @voter_list << voter.email @vote_list << voter.vote