summaryrefslogtreecommitdiff
path: root/app/views/matches/show.html.erb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-07 00:31:47 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-07 00:31:47 -0500
commit1ecd3d50d0ac73968362f885c9f60ec38253be9a (patch)
tree324f79ad4d4da1af623fc93f215643287d6210f3 /app/views/matches/show.html.erb
parentb2e0b1397596ee8f624ef4de122cc71599d4dc0d (diff)
parentc1f714a479eb7ca9e9125e283361a471dd928278 (diff)
Merge branch 'clean'
Conflicts: app/models/match.rb app/views/matches/index.html.erb app/views/matches/show.html.erb
Diffstat (limited to 'app/views/matches/show.html.erb')
-rw-r--r--app/views/matches/show.html.erb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/matches/show.html.erb b/app/views/matches/show.html.erb
index b31c989..d8112b7 100644
--- a/app/views/matches/show.html.erb
+++ b/app/views/matches/show.html.erb
@@ -22,3 +22,13 @@
<%= link_to 'Edit', edit_tournament_match_path(@tournament, @match) %> |
<%= link_to 'Back', tournament_matches_path %>
+
+<% unless @match.winner.nil? %>
+ <p>
+ <strong>Winner:</strong>
+ <%= @match.winner.users.collect{|u| u.user_name}.join(", ") %>
+ </p>
+<% end %>
+<%= link_to 'Edit', edit_match_path(@match) %> |
+<%= link_to 'Back', matches_path %>
+