<%= link_to "Edit General Information", :action => 'edit_general_information', :id => @election.id %>
<% end %>Summary
<%= h(@election.name) %>
Description
<%= h(@election.description) %>
Additional Information
Link
<%= (link_to ("Go Vote!", :controller => 'voter', :action => 'index', :election_id => @election.id)).to_s %> <% end -%><%= link_to "Edit Candidates", :action => 'edit_candidates', :id => @election.id %>
<% end %> <% if @election.candidates.empty? %>There are currently no candidates registered. <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id %>
<% else %> <%= render :partial => 'candidate_list' %> <% end %><%= link_to "Change Voters/Options", :action => 'edit_voters', :id => @election.id %>
<% end %> <% if not @election.authenticated? %>This election is open the public.
<% elsif @election.voters.empty? %>There are currently no voters registered. <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id %>
<% else %> <%= render :partial => 'voter_list' %><%= link_to "Add or remove voters.", :action => 'edit_voters', :id => @election.id unless @election.active? or @election.done? %>
<% end %> <% if not (@election.active? or @election.done?) %>Your vote cannot be started for the following reasons:
Please check everything carefully on this page before starting this vote. Once you begin the vote, you will not be able to add or change candidates, modify the voting lists, or change the end time.
When you begin the vote, the following will happen:
To embed your election, copy and paste the following code into your homepage:
<%= h("") %><% end %>