+<div id="title-header">
+ <span class="header">Election Overview</span>
+ <span class="subheader"></span>
+</div>
+<% if @election.enddate < Time.now %>
+<div id="status">Election is finished. <%= link_to "View results",
+ :controller => 'voter', :action => 'index',
+ :election_id => @election.id %>.</div>
+
+<% elsif (@election.active? && @election.early_results? ) %>
+ <div id="status">You have decided that the results
+ should be viewable while the election is in progress.
+ <%if @election.voters.select {|v| v.vote.confirmed?}.empty? %>
+ However, no one has voted yet.
+ <% else %>
+ <%= link_to "View results", :controller => 'election', :action => 'results',
+ :id => @election.id %>.
+ <% end %>
+ </div>
+<% elsif @election.active? %>
+ <div id="status">Vote is in currently in progress. Return to
+ this page for results on <%= @election.enddate %>.</div>
+
+<% else %>
+ <p style="text-align: right;">
+ <%= link_to "Edit General Information",
+ :action => 'edit_general_information', :id => @election.id %>
+ </p>
+<% end %>