<% @edit = true %>
<h1><strong><%= @election.name %>:</strong> Edit Candidates</h1>
+<p>The following are valid options or candidates in this election:</p>
+
+<ul>
+<% @election.candidates.each do |candidate| %>
+ <% @candidate = candidate %>
+ <%= render :partial => 'candidate_line' %>
+<% end %>
+</ul>
+
<%= render :partial => 'candidates_form' %>
<%= button_to "Done!", :action => 'show', :id => @election %>