Changed properties to remove unecessary exectables.
[selectricity] / app / views / voter / review.rhtml
1 <% %>
2
3 <h1>Please review your vote carefully before confirming it.</h1>
4
5 <p>You have ranked the candidates in the following order (from most
6 preferred to least preferred:</p>
7
8 <ol>
9   <% for rank in @vote.rankings.sort %>
10   <li><%= rank.candidate.name %> </li>
11   <% end %>
12 </ol>
13
14 <table>
15 <tr>
16   <td valign="top"><%= button_to 'Confirm', :action => 'confirm', :id => @voter.password %></td>
17   <td valign="top">Confirm this vote now. You will be able to go back and
18     change it.</td>
19 </tr>
20
21 <tr>
22   <td valign="top"><%= button_to 'Change', :action => 'index', :id => @voter.password %></td>
23   <td valign="top">Go back to the voting page and vote again.</td>
24 </tr>
25
26 <tr>
27   <td valign="top"><%= button_to 'Discard', :action => 'discard' %></td>
28   <td valign="top">Discard this tentative vote and log out.</td>
29 </tr>
30
31 </table>

Benjamin Mako Hill || Want to submit a patch?