summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/tournaments/index.html.erb')
-rw-r--r--app/views/tournaments/index.html.erb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb
index f8f21e7..49a83ec 100644
--- a/app/views/tournaments/index.html.erb
+++ b/app/views/tournaments/index.html.erb
@@ -3,15 +3,16 @@
<table>
<thead>
<tr>
- <th>Name</th>
<th>Game</th>
<th>Status</th>
+ <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>Sampling method</th>
<th></th>
<th></th>
<th></th>
@@ -21,15 +22,16 @@
<tbody>
<% @tournaments.each do |tournament| %>
<tr>
- <td><%= tournament.name %></td>
<td><%= tournament.game %></td>
<td><%= tournament.status %></td>
+ <td><%= tournament.name %></td>
<td><%= tournament.min_players_per_team %></td>
<td><%= tournament.max_players_per_team %></td>
<td><%= tournament.min_teams_per_match %></td>
<td><%= tournament.max_teams_per_match %></td>
<td><%= tournament.set_rounds %></td>
<td><%= tournament.randomized_teams %></td>
+ <td><%= tournament.sampling_method %></td>
<td><%= link_to 'Show', tournament %></td>
<td><%= link_to 'Edit', edit_tournament_path(tournament) %></td>
<td><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' } %></td>