X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/ffec26b00fc14b92f82137e1e3c62ce78c93ea24..5901217a8893619fbdb02d540c08390f92eae368:/app/views/quickvote/_pref_tables.rhtml diff --git a/app/views/quickvote/_pref_tables.rhtml b/app/views/quickvote/_pref_tables.rhtml index 0d2b020..b9d41ec 100644 --- a/app/views/quickvote/_pref_tables.rhtml +++ b/app/views/quickvote/_pref_tables.rhtml @@ -1,22 +1,28 @@ -<% 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 in the table below shows how many times the candidate on +the left beat the matching candidate on the top. The winner is on the +top of the left column.
-+ | <% candidates.each do |candidate| -%> - | <%=h names[candidate] -%> | +<%=h @names[candidate] -%> | <% end -%>
---|---|---|---|
<%=h names[winner] %> | +<%=h @names[winner] %> | <% candidates.each do |loser| -%> <% if winner == loser -%>-- | @@ -31,15 +37,21 @@
<%=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 -%> @@ -50,3 +62,6 @@ |
---|