+<% 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">The creator of this election has decided that the results
+ should be viewable while the election is in progress.
+ <%if @election.voters.empty? %>
+ However, no one has voted yet.
+ <% else %>
+ <%= link_to "View results", :controller => 'voter', :action => 'results',
+ :id => "open" %>.
+ <% end %>
+ </div>
+<% elsif @election.active? %>