1 <h1>Information On <%= @election.name %></h1>
3 <h2>Overview <%= link_to "edit", :action => 'edit', :id => @election.id %></h2>
5 <p><strong>Description</strong></p>
8 <%= @election.description %>
11 <h2>Candidates <%= link_to "edit", :action => 'edit_candidates', :id => @election.id %></h2>
14 The following are valid options or candidates in this election:
17 <% @election.candidates.each do |candidate| %>
18 <% @candidate = candidate %>
19 <%= render :partial => 'candidate_line' %>
23 <h2>Voters <%= link_to "edit", :action => 'edit_voters', :id => @election.id %></h2>