<% %>

Information On <%= @election.name %>

Election Overview

Description

<%= h(@election.description) %>

Election End Date

<%= @election.enddate %>

<%= link_to "Edit election overview.", :action => 'edit', :id => @election.id %>

Candidates

<% unless @election.candidates.empty? %> <%= render :partial => 'candidate_list' %>

<%= link_to "Add, remove, or edit candidates.", :action => 'edit_candidates', :id => @election.id %>

<% else %>

There are currently no candidates registered for this election. <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id %>

<% end %>

Voters

<% unless @election.voters.empty? %> <%= render :partial => 'voter_list' %> <%= link_to "Add or remove voters.", :action => 'edit_voters', :id => @election.id %>

<% else %>

There are currently no voters registered for this election. <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id %>

<% end %>

Start Election

<% if @election.start_blockers.length > 0 %>

Your election cannot be started for the following reasons:

<% else %>

Please check eveything carefully on this page before starting this election. Once you begin the election, you will not be able to add or change candidates, modify the voting lists, or change the election end time.

When you begin the election, the following will happen:

<%= button_to 'Start Election!', :action => 'start_election', :id => @election.id %> <% end %>