summaryrefslogtreecommitdiff
path: root/app/views/matches
diff options
context:
space:
mode:
authortkimia <tkimia@purdue.edu>2014-04-07 01:34:30 -0400
committertkimia <tkimia@purdue.edu>2014-04-07 01:34:30 -0400
commita916d160f7e5f8446751c5739d207c746e5d97b0 (patch)
treee98e7e132ef8813397a0f177442383f2235ccde1 /app/views/matches
parentf6412084d6aafe51a5da6ca31b5f1e79f2ca0029 (diff)
your team is shown as light green in the tournament tree
Diffstat (limited to 'app/views/matches')
-rw-r--r--app/views/matches/index.html.erb11
1 files changed, 5 insertions, 6 deletions
diff --git a/app/views/matches/index.html.erb b/app/views/matches/index.html.erb
index 1941179..742de14 100644
--- a/app/views/matches/index.html.erb
+++ b/app/views/matches/index.html.erb
@@ -51,9 +51,9 @@
</radialGradient>
</defs>
<script type="text/ecmascript"><![CDATA[
- function redirect(i){
- window.location.replace("<%= request.original_url %>"+"/"+i);
- }
+ function redirect(i){
+ window.location.replace("<%= request.original_url %>"+"/"+i);
+ }
]]>
</script>
<% (1..@matches.count).each do |i| %>
@@ -81,7 +81,7 @@
stroke="grey"
<% end %>
/>
- <rect width="<%= rw-5 %>%" height="<%= rh/4 %>%" x="<%= rx + 2.5 %>%" y="<%= ry + 4 %>%" fill="white" stroke="black" />
+ <rect width="<%= rw-5 %>%" height="<%= rh/4 %>%" x="<%= rx + 2.5 %>%" y="<%= ry + 4 %>%" fill="<%= @matches[i-1].teams.first and @matches[i-1].teams.first.users.include?(current_user) ? "#BCED91" : "white" %>" stroke="black" />
<text x="<%= rx + rw/4 %>%" y="<%= ry + 10 %>%" font-size="<%= rh %>">
<% if @matches[i-1].teams.first %>
Team <%= @matches[i-1].teams.first.id %>
@@ -89,13 +89,12 @@
</text>
<text x="<%= rx + rw/2 - 2 %>%" y="<%= ry + 16 %>%" font-size="<%= rh %>"> VS </text>
- <rect width="<%= rw-5 %>%" height="<%= rh/4 %>%" x="<%= rx + 2.5 %>%" y="<%= ry + 17 %>%" fill="white" stroke="black" />
+ <rect width="<%= rw-5 %>%" height="<%= rh/4 %>%" x="<%= rx + 2.5 %>%" y="<%= ry + 17 %>%" fill="<%= @matches[i-1].teams[1] and @matches[i-1].teams[1].users.include?(current_user) ? "#BCED91" : "white" %>" stroke="black" />
<text x="<%= rx + rw/4 %>%" y="<%= ry + 23 %>%" font-size="<%= rh %>">
<% if @matches[i-1].teams[1] %>
Team <%= @matches[i-1].teams[1].id %>
<% end %>
</text>
-
<% if i > 1 %>
<line x1="<%= rx+rw %>%" y1="<%= ry+rh/2 %>%" x2="<%= lastrx %>%" y2="<%= lastry+lastrh/2 %>%" stroke="black" stroke-width="2" >
<% end %>