summaryrefslogtreecommitdiff
path: root/app/views/matches/index.html.erb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:56:25 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 17:56:25 -0400
commitd8acc6785ee41a2628cd0d59d91916b2f087290b (patch)
treebdc6343b90c3ce6015f8c81bf06a250cb9580133 /app/views/matches/index.html.erb
parent53b4f8028fc987b0cf26a7a073fec7064b4b6d8a (diff)
parent433fc302fe2943e89a36657affea39d578475d20 (diff)
Adding match status after solving conflicts
Diffstat (limited to 'app/views/matches/index.html.erb')
-rw-r--r--app/views/matches/index.html.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/matches/index.html.erb b/app/views/matches/index.html.erb
index 60df1b5..d862d57 100644
--- a/app/views/matches/index.html.erb
+++ b/app/views/matches/index.html.erb
@@ -3,6 +3,7 @@
<table>
<thead>
<tr>
+ <th>Status</th>
<th>Tournament</th>
<th>Name</th>
<th>Winner</th>
@@ -16,6 +17,8 @@
<% @tournament.matches.each do |match| %>
<tr>
<td><%= match.tournament.id %></td>
+ <td><%= match.status %></td>
+ <td><%= match.tournament %></td>
<td><%= match.name %></td>
<td><%= match.winner %></td>
<td><%= link_to 'Show', tournament_match_path(@tournament, match) %></td>