summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:30:10 -0400
commit0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (patch)
tree2fc2082814e513ec5d68b22e7fa07d268df6d788 /app/views/tournaments/index.html.erb
parent8435c0a5ec9889a9da6ede2e24c044d64b279095 (diff)
added match status
Diffstat (limited to 'app/views/tournaments/index.html.erb')
-rw-r--r--app/views/tournaments/index.html.erb47
1 files changed, 16 insertions, 31 deletions
diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb
index 90c3d7a..f8f21e7 100644
--- a/app/views/tournaments/index.html.erb
+++ b/app/views/tournaments/index.html.erb
@@ -1,14 +1,16 @@
-<h1>Listing Tournaments</h1>
+<h1>Listing tournaments</h1>
-<% if @tournaments.length > 0 %>
-<table class="table table-hover">
+<table>
<thead>
<tr>
<th>Name</th>
<th>Game</th>
<th>Status</th>
- <th>Players per team</th>
- <th>Teams per match</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>
@@ -20,28 +22,13 @@
<% @tournaments.each do |tournament| %>
<tr>
<td><%= tournament.name %></td>
- <td><% case tournament.status
- when 0 %>
- <%= form_tag(tournament_path(tournament), method: "put") do %>
- <input type="hidden" name="update_action" value="join">
- <%= submit_tag("Join") %>
- <% end %>
- <% when 1 %>
- Ongoing
- <% else %>
- Closed
- <%end %>
- </td>
- <td><%= tournament.min_players_per_team %>
- <% if tournament.min_players_per_team != tournament.max_players_per_team %>
- to <%= tournament.max_players_per_team %>
- <% end %>
- </td>
- <td><%= tournament.min_teams_per_match %>
- <% if tournament.min_teams_per_match != tournament.max_teams_per_match %>
- to <%= tournament.max_teams_per_match %>
- <% end %>
- </td>
+ <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><%= link_to 'Show', tournament %></td>
<td><%= link_to 'Edit', edit_tournament_path(tournament) %></td>
@@ -50,9 +37,7 @@
<% end %>
</tbody>
</table>
-<% else %>
- <p class="no-entries"> No tournaments going on right now... Why not start your own? </p>
-<% end %>
+
<br>
-<%= link_to 'New Tournament', new_tournament_path, :class => "btn btn-warning btn-lg" %>
+<%= link_to 'New Tournament', new_tournament_path %>