summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 21:29:24 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 21:29:24 -0500
commitc9f2abad7b9c967e23ed2b2867d426eb27f61387 (patch)
tree234099af3374285f89573f774795639a9bcb88d9 /app/views/tournaments/index.html.erb
parentd72452a5965c0df32a13053ae86bcd529fc0fc9e (diff)
make the join tables not have models
Diffstat (limited to 'app/views/tournaments/index.html.erb')
-rw-r--r--app/views/tournaments/index.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb
index dec16d1..fb8b381 100644
--- a/app/views/tournaments/index.html.erb
+++ b/app/views/tournaments/index.html.erb
@@ -4,13 +4,13 @@
<thead>
<tr>
<th>Game</th>
+ <th>Status</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>
@@ -21,13 +21,13 @@
<% @tournaments.each do |tournament| %>
<tr>
<td><%= tournament.game %></td>
+ <td><%= tournament.status %></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>