summaryrefslogtreecommitdiff
path: root/app/views/matches/show.html.erb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
commit0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (patch)
tree2fc2082814e513ec5d68b22e7fa07d268df6d788 /app/views/matches/show.html.erb
parent8435c0a5ec9889a9da6ede2e24c044d64b279095 (diff)
added match status
Diffstat (limited to 'app/views/matches/show.html.erb')
-rw-r--r--app/views/matches/show.html.erb34
1 files changed, 14 insertions, 20 deletions
diff --git a/app/views/matches/show.html.erb b/app/views/matches/show.html.erb
index b6930ea..f3fc822 100644
--- a/app/views/matches/show.html.erb
+++ b/app/views/matches/show.html.erb
@@ -1,6 +1,13 @@
+<p id="notice"><%= notice %></p>
+
+<p>
+ <strong>Status:</strong>
+ <%= @match.status %>
+</p>
+
<p>
<strong>Tournament:</strong>
- <%= @match.tournament.id %>
+ <%= @match.tournament %>
</p>
<p>
@@ -8,23 +15,10 @@
<%= @match.name %>
</p>
-<% if (@tournament.hosts.include?(current_user) and @match.winner.nil?) %>
- <%= form_for([@tournament, @match], method: "put") do |f| %>
- <ul>
- <% @match.teams.each do |team| %>
- <li><label><%= f.radio_button(:winner, team.id) %>
- <%= team.users.collect{|u| u.user_name}.join(", ") %></label></li>
- <% end %>
- </ul>
- <%= f.submit("Select winner") %>
- <% end %>
-<% end %>
-
-<% unless @match.winner.nil? %>
- <p>
- <strong>Winner:</strong>
- <%= @match.winner.users.collect{|u| u.user_name}.join(", ") %>
- </p>
-<% end %>
+<p>
+ <strong>Winner:</strong>
+ <%= @match.winner %>
+</p>
-<%= link_to 'Back', tournament_matches_path %>
+<%= link_to 'Edit', edit_match_path(@match) %> |
+<%= link_to 'Back', matches_path %>