3 <h1>Vote Below the Line</h1>
5 <p><strong>Election:</strong> <%= @voter.election.name %></p>
7 <p><strong>Voter:</strong> <%= @voter.email %></p>
9 <p><strong>Candidates:</strong></p>
12 <% for candidate in @voter.election.candidates.sort %>
13 <li><%= candidate.name %></li>
17 <p>If this information is incorrect, please notify the vote
18 administrator immediatedly!</p>
22 <h2>Place Your Vote Here</h2>
24 <p>Rank each candidate in order of more preferred to least
25 preferred. (e.g., 123 or 321 or 213, etc.)</p>
27 <%= form_tag :action => 'review', :id => @voter.password %>
28 <%= text_field :vote, :votestring -%>
29 <%= submit_tag "Submit!" %>