<% candidates = @election.candidates.sort.collect {|candidate| candidate.id}-%>
+<% voters = @election.voters.size %>
+
<% names = Hash.new -%>
<% candidates.each do |candidate| -%>
<%names[candidate] = Candidate.find(candidate).name -%>
<tr>
<td> </td>
<% candidates.each do |candidate| -%>
- <th><%= names[candidate] -%></th>
+ <th><%=h names[candidate] -%></th>
<% end -%>
<% candidates.each do |winner| -%>
<tr>
- <th><%= names[winner] %></th>
+ <th><%=h names[winner] %></th>
<% candidates.each do |loser| -%>
<% if winner == loser -%>
<td> -- </td>
<% else %>
- <td><%= @election.condorcet_result.matrix[winner][loser] %></td>
+ <td><% wins = @election.condorcet_result.matrix[winner][loser]%>
+ <%=h wins %>
+ <%= sparkline_tag [(wins.to_f/voters.to_f)*100.0], :type => 'pie',
+ :diameter => 25, :share_color => '#74ce00' %>
+ </td>
<% end -%>
<% end -%>
</tr>