-<% fields_for 'quickvote', quickvote do |quickform| %>
-
-<p><label for="quickvote_election_method">Election Method</label></p>
-
-<p><%= quickform.select('election_method',
- %w(ssd condorcet plurality approval borda) ) %></p>
-
-<p><label for="quickvote_enddate">End Time</label></p>
-<p><%= quickform.date_select(:enddate, :start_year => Time.now.year) %></p>
-
-<p>Visibility</p>
-
-<p>Do you want the results to be visible while the election is active?</p>
-
-<p>Yes <%= quickform.radio_button(:viewable, 1)%>
-No <%= quickform.radio_button(:viewable, 0)%></p>
-
-<% if session[:user] %>
-<p>Notification</p>
-
-<p>Would you like to be e-mailed when this QuickVote concludes?</p>
-
-<p>Yes <%= quickform.radio_button(:notices, 1)%>
-No <%= quickform.radio_button(:notices, 0)%></p>
-<% end -%>
-
-<% end %>