X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/823d530ba46c1fb3518c4deef0081738503837eb..f95bdca9d25333308ef2f0c80eb2011f42d4a5eb:/app/views/quickvote/_pref_tables.rhtml?ds=inline
diff --git a/app/views/quickvote/_pref_tables.rhtml b/app/views/quickvote/_pref_tables.rhtml
index 0d2b020..628ce55 100644
--- a/app/views/quickvote/_pref_tables.rhtml
+++ b/app/views/quickvote/_pref_tables.rhtml
@@ -2,21 +2,20 @@
<% voters = @election.voters.size %>
<% matrix = @election.condorcet_result.matrix %>
<% victories = @election.condorcet_result.victories_and_ties %>
-<% names = @election.names_by_id %>
-
+
- |
+ |
<% 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 -%>
-- |
@@ -33,13 +32,13 @@
-
+
<% 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 -%>
|