2 <h1>Information On <%= @election.name %></h1>
4 <h2>Election Overview</h2>
6 <p><strong>Description</strong></p>
9 <%= h(@election.description) %>
12 <p><strong>Election End Date</strong></p>
15 <%= @election.enddate %>
18 <p><%= link_to "Edit election overview.", :action => 'edit', :id => @election.id %></p>
22 <% unless @election.candidates.empty? %>
23 <%= render :partial => 'candidate_list' %>
24 <p><%= link_to "Add, remove, or edit candidates.", :action => 'edit_candidates', :id => @election.id %></p>
26 <p><em>There are currently no candidates registered for this election.
27 <%= link_to "Add some!", :action => 'edit_candidates', :id => @election.id %></em></p>
33 <% unless @election.voters.empty? %>
34 <%= render :partial => 'voter_list' %>
36 <p><em>There are currently no voters registered for this election.
37 <%= link_to "Add some!", :action => 'edit_voters', :id => @election.id %></em></p>