<p><strong>Number of voters:</strong></p>
<blockquote>
- <%= @election.voters.length %> (see below for details)
+ <%= @election.voters.reject {|v| not v.voted? }.length %> (see below for details)
</blockquote>
<h2>Winners</h2>
<div class="resultbox">
<h3>Instant Runoff (IRV) Results</h3>
-<%= render :partial => 'result', :object => @runoff_result %>
<div class="rbmoreinfo"
<h4>About Instant Runoff Voting</h4>
<th>Vote</th>
</tr>
<% for voter in @election.voters %>
+ <% next unless voter.voted? %>
<tr>
<td><%= voter.ipaddress %></td>
<td><%= `host #{voter.ipaddress}`.sub(/^.*pointer (.*)\.$/, '\1') %></td>
</tr>
<% end %>
</table>
+
+<%= image_tag( graph_url( :action => 'votes_per_day', :id => @election ) ) %><br />
+<%= image_tag( graph_url( :action => 'votes_per_interval', :id => @election ))%><br />
+<%= image_tag( graph_url( :action => 'borda_bar', :id => @election ) ) %>
+<%= image_tag( graph_url( :action => 'choices_positions', :id => @election ) ) %>
+