<span class="subheader"></span>
</div>
-<% if @election.active? %>
+<% if @election.done? %>
+<div id="status">Election is finished. <%= link_to "View results",
+ :action => 'detailed_results', :id => @election.id %>.</div>
+
+<% elsif (@election.active? && @election.viewable?) %>
+ <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", :action => 'detailed_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>
-<% elsif @election.done? %>
- <div id="status">Election is finished. <%= link_to "View results",
- :action => 'results', :id => @election.id %>.</div>
+
<% else %>
<p style="text-align: right;">
<%= link_to "Edit General Information",
</ul>
+<% if @election.active? and not @election.authenticated? %>
+<p><strong>Link</strong></p>
+<%= (link_to ("Go Vote!",
+ :controller => 'voter', :action => 'index', :election_id => @election.id)).to_s %>
+<% end -%>
<div class="normal-header">
<span class="header">Candidates</span>
<p>To embed your election, copy and paste the following code into your
homepage:</p>
-<pre><%= h("<iframe src='") + votepassword_url(:urlpassword => "open." + @election.id.to_s, :embed => "true") + h("' width='330px' height='370px'>") %>
+<pre><%= h("<iframe src='") + votepassword_url(:urlpassword => "open." + @election.id.to_s, :embed => "true") + h("' width='330px' height='#{(@election.candidates.length+2)*53}px'>" ) %>
<%= h("</iframe>") %></pre>
<% end %>