<%= @vote.title %>
<%= @vote.description %>
Your ratings
Hello, <%= current_user.email %>.
Participants
<% @vote.ratings.collect { |rating| rating.user }.uniq.each do |user| %>
- <%= user.email %>
<% end %>
Organizers
<% @vote.organizers.each do |organizer| %>
- <%= organizer.user.email %>
<% end %>
<% if @vote.users.exists?(current_user.id) %>
Actions for organizers
Add organizer
<% end %>