]> projects.mako.cc - selectricity-live/blobdiff - app/views/quickvote/results.rhtml
refactored the results page
[selectricity-live] / app / views / quickvote / results.rhtml
index 8b658f77a3c86dcae036916f5c7ddee82322fb6c..f4f6f2d812aa93e98ad46c453d728a7c9900a79d 100644 (file)
@@ -1,12 +1,10 @@
 <% 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>
@@ -90,9 +81,9 @@
 <% end %>
 </table>
 
-<%=image_tag( graph_url( :action => 'votes_per_interval', :id => @election ))%>
 <br />
 
+<!--
 <%= image_tag( graph_url( :action => 'choices_positions', :id => @election ) ) %><br />
+-->
 
-</div>

Benjamin Mako Hill || Want to submit a patch?