merged in changes from live version
[selectricity-live] / app / views / quickvote / thanks.rhtml
1 <div id="title-header">
2   <span class="header">Quickvote</span>
3   <span class="subheader">Vote Recorded Successfully</span>
4 </div>
5
6 <p>Your vote has been recorded with the following ranked
7 preferences:</p>
8
9 <ol>
10   <% for rank in @voter.vote.rankings.sort %>
11     <li><%= white_list(rank.candidate.name.capitalize) %> </li>
12   <% end %>
13 </ol>
14
15 <p>Thank you for voting! You can:</p>
16
17 <ul>
18   <li><%= link_to "Change Your Vote", quickaction_url( :ident => @voter.election.name, :action => 'change' ) %></li>
19
20   <li><%= link_to "View Current Results", quickaction_url( :ident => @voter.election.name, :action => 'results' ) %></li>
21 </ul>
22

Benjamin Mako Hill || Want to submit a patch?