X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/47fdfaba5a11570f2d7d720ee1c80d616d502c74..45d48f668c0159ebae18fecb76b3b94f79f87d24:/app/views/quickvote/_pref_tables.rhtml
diff --git a/app/views/quickvote/_pref_tables.rhtml b/app/views/quickvote/_pref_tables.rhtml
index 66e0cbf..588ec22 100644
--- a/app/views/quickvote/_pref_tables.rhtml
+++ b/app/views/quickvote/_pref_tables.rhtml
@@ -1,23 +1,25 @@
-<% 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 %>
-<% names = @election.names_by_id %>
-
+<% matrix = @election.ssd_result.matrix %>
+<% victories = @election.ssd_result.victories_and_ties %>
+<% if candidates.size <= 7 -%>
-
+
+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.
- |
+ |
<% candidates.each do |candidate| -%>
- <%=h names[candidate] -%> |
+ <%=h @names[candidate] -%> |
<% end -%>
<% candidates.each do |winner| -%>
- <%=h names[winner] %> |
+ <%=h @names[winner] %> |
<% candidates.each do |loser| -%>
<% if winner == loser -%>
-- |
@@ -32,23 +34,27 @@
<% end -%>
-
+
-
+
+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.
+
<% candidates.each do |victor| %>
- <%=h names[victor] %> |
+ <%=h @names[victor] %> |
<% victories[victor].keys.each do |loser| %>
<% margin = victories[victor][loser]%>
- <%=h names[loser] %>
+ | <%=h @names[loser] %>
<% if margin == 0%>
Tied!
<% else -%>
(<%= margin%>)
<% end -%>
- |
+
<% end -%>
<% end -%>
+<% end -%>