summaryrefslogtreecommitdiff
path: root/app/views/games/show.html.erb
blob: 28da040a5dceef885c2cf3a15797db80e79ac5cd (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
<p id="notice"><%= notice %></p>

<p>
  <strong>Parent:</strong>
  <%= @game.parent %>
</p>

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

<p>
  <strong>Min players per team:</strong>
  <%= @game.min_players_per_team %>
</p>

<p>
  <strong>Max players per team:</strong>
  <%= @game.max_players_per_team %>
</p>

<p>
  <strong>Min teams per match:</strong>
  <%= @game.min_teams_per_match %>
</p>

<p>
  <strong>Max teams per match:</strong>
  <%= @game.max_teams_per_match %>
</p>

<p>
  <strong>Scoring method:</strong>
  <%= @game.scoring_method %>
</p>

<%= link_to 'Edit', edit_game_path(@game) %> |
<%= link_to 'Back', games_path %>