<%= @vote.title %>
<% if @vote.expire_on %>
<%= _("Closing date: #{format_date(@vote.expire_on)}") %>
<% end %>
<%= @vote.description %>
<%= _("Your ratings") %>
<%= _("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) and @vote.expire_on.nil? %>
<%= _("Actions for organizers") %>
<%= _("Add organizer") %>
<% end %>