summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-06 17:34:41 -0500
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-06 17:34:41 -0500
commit0e8af95b4656d851cc43b45f8c48fd2c4d4c1ed2 (patch)
tree263f0e970f8ce981470e591d94d14700810d7853 /app/views/tournaments/index.html.erb
parent240d8602fb6aaf249b33db7b0c2f8a72add63658 (diff)
parentf5d36fc67d1994b7cc1ce02e7be2767ffcb47857 (diff)
merge ready?
Diffstat (limited to 'app/views/tournaments/index.html.erb')
-rw-r--r--app/views/tournaments/index.html.erb24
1 files changed, 19 insertions, 5 deletions
diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb
index e9147f6..80d68a3 100644
--- a/app/views/tournaments/index.html.erb
+++ b/app/views/tournaments/index.html.erb
@@ -4,17 +4,31 @@
<table class="table table-hover">
<thead>
<tr>
- <th>Tournament ID</th>
- <th>Show Tournament</th>
- <th>Edit Tournament</th>
- <th>Delete Tournament</th>
+ <th>Game</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>Status</th>
+ <th></th>
+ <th></th>
+ <th></th>
</tr>
</thead>
<tbody>
<% @tournaments.each do |tournament| %>
<tr>
- <td><%= tournament.id %></td>
+ <td><%= tournament.game %></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.status %></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>