<% require 'whois/whois' %>
-<div id="page-title">
+<div id="title-header">
<span class="header">Quickvote</span>
<span class="subheader">Results</span>
</div>
-<div class="main-content">
-
<% if @election.shortdesc %>
<p><strong>Vote Description:</strong></p>
<blockquote><em><%=h @election.shortdesc %></em>
<%= @election.voters.reject {|v| not v.voted? }.length %> (see below for details)
</blockquote>
-<div class="plain-header">
- <span class="header">Winner</span>
- <span class="subheader"></span>
-</div>
+<%= render :partial => 'result_box',
+ :locals => { :method => @election.election_method } %>
-<div class="mainresultbox">
-<%= render :partial => 'result_' + @election.election_method,
- :object => @results[@election.election_method] %>
-</div>
+<% for result_type in @election.other_methods %>
-<div class="plain-header">
- <span class="header">Other Voting Methods</span>
- <span class="subheader"></span>
-</div>
+<%= render :partial => 'result_box',
+ :locals => { :method => result_type } %>
-<% for result_type in @election.other_methods %>
-<div class="resultbox">
-<%= render :partial => 'result_' + result_type,
- :object => @results[result_type] %>
-</div>
<% end %>
<div class="clear-div"></div>
-<h2>Voters <%= link_to "[Stalk Voters]", :controller => "quickvote", :action => "mapvoters", :id => @election.id %></h2>
+<div class="normal-header">
+ <span class="header">Voter Report</span>
+ <span class="subheader"></span>
+</div>
+
+<p><%= link_to "[Stalk Voters]", :controller => "quickvote", :action => "mapvoters", :id => @election.id %></p>
<table class="voterbox">
<tr>
<th>IP/Host</th>
<% end %>
</table>
-<%=image_tag( graph_url( :action => 'votes_per_interval', :id => @election ))%>
<br />
+<!--
<%= image_tag( graph_url( :action => 'choices_positions', :id => @election ) ) %><br />
+-->
-</div>