1 <h1><strong><%= @election.name %>:</strong> Edit Candidates</h1>
3 <% unless @election.candidates.empty? %>
4 <p>The following are valid options or candidates in this election:</p>
6 <% @election.candidates.each do |candidate| %>
7 <% @current_candidate = candidate %>
8 <%= render :partial => 'candidate_line_edit' %>
12 <p>There are no candidates registered for this election.</p>
14 <p>Please enter new candidates below.</p>
15 <%= render :partial => 'candidates_form' %>
16 <%= button_to "Done!", :action => 'show', :id => @election %>