summaryrefslogtreecommitdiff
path: root/app/views/matches/show.html.erb
blob: d8112b7741e75ffa50da6b30d27916366bbf9fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<p>
  <strong>Tournament:</strong>
  <%= @match.tournament.id %>
</p>

<p>
  <strong>Name:</strong>
  <%= @match.name %>
</p>

<% if @tournament.hosts.include?(current_user) %>
	<%= form_tag(tournament_match_path(@tournament, @match), method: "put") do %>
		<ul>
			<% @match.teams.each do |team| %>
				<li><label><input type="radio" name="winner" value="<%= team.id %>">
					<%= team.users.collect{|u| u.user_name}.join(", ") %></label></li>
		  <% end %>
		</ul>
		<%= submit_tag("Select winner") %>
	<% end %>
<% end %>

<%= 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 %>