<%= @vote.title %>

<%= @vote.description %>

Hello, <%= current_user.email %>.

Your ratings

All ratings

<% @vote.candidates.each do |candidate| %> <% end %> <% @vote.ratings.collect { |rating| rating.user }.uniq.each do |user| %> <% @vote.candidates.each do |candidate| %> <% if rating = @vote.ratings.find { |rating| rating.user == user and rating.candidate == candidate } %> <% end %> <% end %> <% end %>
Participant<%= candidate.name %>
<%= user.email %><%= rating.value %>

New candidate