1 <div id="title-header">
2 <span class="header">Vote</span>
3 <span class="subheader"><%= @voter.election.name %></span>
6 <p><strong>Description:</strong></p>
7 <p><%= @voter.election.description %></p>
9 <% if @voter.election.authenticated? %>
10 <div class="normal-header">
11 <span class="header">Current Voter</span>
12 <span class="subheader"></span>
16 <p><strong><%= @voter.email %></strong></p>
18 <div class="normal-header">
19 <span class="header">Instructions</span>
20 <span class="subheader"></span>
23 <p>Drag and drop the items on <strong>list in the left column</strong>
24 until they are in order from most preferred at the top to least
25 preferred at the bottom. When you are done, press confirm to record your
28 <div class="normal-header">
29 <span class="header">Candidate List</span>
30 <span class="subheader"></span>
33 <% @voter.election.candidates.each do |candidate| %>
34 <% @current_candidate = candidate %>
35 <div id="cand<%= @current_candidate.id %>">
36 <h3><%= h @current_candidate.name %></h3>
37 <%= render :partial => 'election/candidate_box_info' %>