summaryrefslogtreecommitdiff
path: root/app/views/matches/show.html.erb
blob: 1ee7f1de8060698647a25f6b502c02e28fde2f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<p id="notice"><%= notice %></p>

<p>
  <strong>Status:</strong>
  <%= @match.status %>
</p>

<p>
  <strong>Tournament:</strong>
  <%= @match.tournament %>
</p>

<p>
  <strong>Name:</strong>
  <%= @match.name %>
</p>

<p>
  <strong>Winner:</strong>
  <%= @match.winner %>
</p>

<p>
  <strong>Remote:</strong>
  <%= @match.remote_id %>
</p>

<%= link_to 'Edit', edit_match_path(@match) %> |
<%= link_to 'Back', matches_path %>