Extended the COLORS array in graph controller so that elections with multiple
[selectricity] / app / views / quickvote / _pref_tables.rhtml
index 628ce55ca5d873474e149fdc4097109cf8512799..588ec22d8aa88e19883fc1cda0a08c06bb6edbcb 100644 (file)
@@ -1,11 +1,15 @@
-<% candidates = @election.condorcet_result.ranked_candidates.flatten -%>
+<% candidates = @election.ssd_result.ranked_candidates.flatten -%>
 <% voters = @election.voters.size %>
-<% matrix = @election.condorcet_result.matrix %>
-<% victories = @election.condorcet_result.victories_and_ties %>
+<% matrix = @election.ssd_result.matrix %>
+<% victories = @election.ssd_result.victories_and_ties %>
 
+<% if candidates.size <= 7 -%>
 <!-- This table shows how many times each choice was ranked above the other, 
        with percentages-->
 <table class="preftable">
+<caption>Each number shows how many times the candidate on the left beat the 
+matching candidate on the top. The Schulze/Condorcet winner is on the top of the 
+left column.</caption>
   <tr>
        <td></td>
        <% candidates.each do |candidate| -%>
  </tr>
 <% end -%>
 </table>
-
+<br />
 <!-- This table generates a margin of victory -->
 <table class="preftable">
+<caption>A simplification of the above data. The winner is on the left; each cell
+names the defeated candidate and the magnitude of the victory in parenthesis.
+</caption>
   <% candidates.each do |victor| %>
   <tr>
     <th><%=h @names[victor] %></th>
@@ -49,3 +56,5 @@
   </tr>
   <% end -%>
 </table>
+<% end -%>
+

Benjamin Mako Hill || Want to submit a patch?