-<div class="resultbox">
-<h2>Borda Count Results</h2>
-<%= render :partial => 'result', :object => @borda_result %>
-</div>
+<ol>
+ <% for candidate in @election.candidates.sort %>
+ <li><%=h candidate.name.capitalize %></li>
+ <% end %>
+</ol>
+
+<p><strong>Number of voters:</strong></p>
+ <blockquote>
+ <%= @election.voters.reject {|v| not v.voted? }.length %>
+ </blockquote>
+
+<%= render :partial => 'result_box',
+ :locals => { :method => @election.election_method } %>
+
+<% for result_type in @election.other_methods %>
+
+<%= render :partial => 'result_box',
+ :locals => { :method => result_type } %>
+
+<% end %>
+
+
+<div class="clear-div"></div>
+
+<!--
+<%= image_tag( graph_url( :action => 'choices_positions', :id => @election ) ) %><br />
+-->