+<% %>
<h1>Information On <%= @election.name %></h1>
<h2>Overview <%= link_to "edit", :action => 'edit', :id => @election.id %></h2>
<h2>Candidates <%= link_to "edit", :action => 'edit_candidates', :id => @election.id %></h2>
-
-The following are valid options or candidates in this election:
-
-<ul>
-<% @election.candidates.each do |candidate| %>
- <% @candidate = candidate %>
- <%= render :partial => 'candidate_line' %>
-<% end %>
-</ul>
+<%= render :partial => 'candidate_list' %>
<h2>Voters <%= link_to "edit", :action => 'edit_voters', :id => @election.id %></h2>
+
+<%= render :partial => 'voter_list' %>