summaryrefslogtreecommitdiff
path: root/app/views/teams/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/teams/index.html.erb')
-rw-r--r--app/views/teams/index.html.erb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/teams/index.html.erb b/app/views/teams/index.html.erb
index b077e10..6a3188d 100644
--- a/app/views/teams/index.html.erb
+++ b/app/views/teams/index.html.erb
@@ -3,6 +3,7 @@
<table>
<thead>
<tr>
+ <th>Match</th>
<th></th>
<th></th>
<th></th>
@@ -12,6 +13,7 @@
<tbody>
<% @teams.each do |team| %>
<tr>
+ <td><%= team.match %></td>
<td><%= link_to 'Show', team %></td>
<td><%= link_to 'Edit', edit_team_path(team) %></td>
<td><%= link_to 'Destroy', team, method: :delete, data: { confirm: 'Are you sure?' } %></td>