blob: d97e5041100f41194c6a6ca27d0cac11009179ce (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<p id="notice"><%= notice %></p>
<p>
<strong>Game:</strong>
<%= @tournament.game %>
</p>
<p>
<strong>Status:</strong>
<%= @tournament.status %>
</p>
<p>
<strong>Name:</strong>
<%= @tournament.name %>
</p>
<p>
<strong>Min players per team:</strong>
<%= @tournament.min_players_per_team %>
</p>
<p>
<strong>Max players per team:</strong>
<%= @tournament.max_players_per_team %>
</p>
<p>
<strong>Min teams per match:</strong>
<%= @tournament.min_teams_per_match %>
</p>
<p>
<strong>Max teams per match:</strong>
<%= @tournament.max_teams_per_match %>
</p>
<p>
<strong>Set rounds:</strong>
<%= @tournament.set_rounds %>
</p>
<p>
<strong>Randomized teams:</strong>
<%= @tournament.randomized_teams %>
</p>
<p>
<strong>Sampling method:</strong>
<%= @tournament.sampling_method %>
</p>
<%= link_to 'Edit', edit_tournament_path(@tournament) %> |
<%= link_to 'Back', tournaments_path %>
|