2 <% fields_for 'quickvote', quickvote do |quickform| %>
4 <span><label for="quickvote_election_method">Election Method</span><br />
5 <%= quickform.select('election_method',
6 %w(ssd condorcet plurality approval borda) ) %><br />
8 <span><label for="quickvote_enddate">End Time</span><br />
9 <%= quickform.date_select(:enddate, :start_year => Time.now.year) %><br />
11 </p>Want the results to be visible while the election is active?
12 Yes <%= quickform.radio_button(:viewable, 1)%>
13 No <%= quickform.radio_button(:viewable, 0)%></p>
15 <% if session[:user] %>
16 <p>Would you like to be e-mailed when this QuickVote concludes?
17 Yes <%= quickform.radio_button(:notices, 1)%>
18 No <%= quickform.radio_button(:notices, 0)%></p>