blob: 79acd1e0a2cfdd3086d07a8a16ea05199ac8c2d2 (
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
|
<h1>Listing games</h1>
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Min players per team</th>
<th>Max players per team</th>
<th>Min teams per match</th>
<th>Max teams per match</th>
<th>Set rounds</th>
<th>Randomized teams</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @games.each do |game| %>
<tr>
<td><%= game.name %></td>
<td><%= game.min_players_per_team %></td>
<td><%= game.max_players_per_team %></td>
<td><%= game.min_teams_per_match %></td>
<td><%= game.max_teams_per_match %></td>
<td><%= game.set_rounds %></td>
<td><%= game.randomized_teams %></td>
<td><%= link_to 'Show', game %></td>
<td><%= link_to 'Edit', edit_game_path(game) %></td>
<td><%= link_to 'Destroy', game, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Game', new_game_path, {:class => "btn btn-warning"} %>
|