blob: 88bf91cb7c6329302b1b3d8363dd320fff093759 (
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
|
<p>
<strong>Name:</strong>
<%= @game.name %>
</p>
<p>
<strong>Players per team:</strong>
<%= @game.players_per_team %>
</p>
<p>
<strong>Teams per match:</strong>
<%= @game.teams_per_match %>
</p>
<p>
<strong>Set rounds:</strong>
<%= @game.set_rounds %>
</p>
<p>
<strong>Randomized teams:</strong>
<%= @game.randomized_teams %>
</p>
<%= link_to 'Edit', edit_game_path(@game) %> |
<%= link_to 'Back', games_path %>
|