<%= error_messages_for :candidate %>
<% form_tag( { :action => :add_candidate, :id => @election.id },
:multipart => true ) do %>
<%= render :partial => 'candidate_form' %>
<%= submit_tag "Add Candidate" %>
<% end %>
<% unless @election.candidates.empty? %>
<% @election.candidates.each do |candidate| %>
<% @current_candidate = candidate %>
<%= render :partial => 'candidate_line_edit' %>
<% end %>
<% else %>
There are no candidates registered for this election.
<% end %>
When you are done entering candidates, please click the button below
to proceed to the next step.
<%= button_to "Proceed to Next Step", :action => 'new_voters', :id => @election %>