summaryrefslogtreecommitdiff
path: root/app/views/matches/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/matches/index.html.erb')
-rw-r--r--app/views/matches/index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/matches/index.html.erb b/app/views/matches/index.html.erb
index cebabb3..abca42b 100644
--- a/app/views/matches/index.html.erb
+++ b/app/views/matches/index.html.erb
@@ -13,7 +13,7 @@
<tbody class="table-hover">
<% @tournament.matches.order(:id).reverse.each do |match| %><tr>
- <td><%= match.name %></td>
+ <td><%= "Match #{match.id}" %></td>
<td><%= match.status %></td>
<td><%= (match.winner.nil? ? "-" : "Team #{match.winner.id}") %></td>
<td><%= link_to "Show", tournament_match_path(@tournament, match) %>