Vote <%= @voter.election.name %>

Description:

<%= @voter.election.description %>

<% if @voter.election.authenticated? %>
Current Voter
<% end %>

<%= @voter.email %>

Instructions

Drag and drop the items on list in the left column until they are in order from most preferred at the top to least preferred at the bottom. When you are done, press the 'Submit Vote' button at the bottom of the left column to record your vote.

Candidate List
<% @voter.election.candidates.each do |candidate| %> <% @current_candidate = candidate %>

<%= h @current_candidate.name %>

<%= render :partial => 'election/candidate_box_info' %>
<% end %>