+<% unless @election.active %>
+<p><%= link_to "Edit overview.", :action => 'edit', :id => @election.id %></p>
+<% end %>
+
+<h2>Candidates</h2>
+<% %>
+<% unless @election.candidates.empty? %>
+ <%= render :partial => 'candidate_list' %>
+ <% unless @election.active %>
+ <p><%= link_to "Add, remove, or edit candidates.", :action => 'edit_candidates', :id => @election.id %></p>
+ <% end %>
+<% else %>
+ <p><em>There are currently no candidates registered. <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id unless @election.active %></em></p>
+
+<% end %>
+
+<h2>Voters</h2>
+
+<% unless @election.voters.empty? %>
+ <%= render :partial => 'voter_list' %>
+ <%= link_to "Add or remove voters.", :action => 'edit_voters', :id => @election.id unless @election.active %></em></p>
+<% else %>
+ <p><em>There are currently no voters registered. <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id unless @election.active %></em></p>
+<% end %>
+
+<% unless @election.active? %>
+ <h2>Start Election</h2>
+
+ <% if @election.start_blockers.length > 0 %>
+ <p>Your vote cannot be started for the following reasons:</p>
+ <ul>
+ <% for reason in @election.start_blockers %>
+ <li><%= reason %></li>
+ <% end %>
+ </ul>
+ <% else %>
+ <p>Please check everything carefully on this page before starting this
+ vote. Once you begin the vote, you will <em>not</em> be able to add or
+ change candidates, modify the voting lists, or change the end
+ time.</p>
+
+ <p>When you begin the vote, the following will happen:</p>