mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-01 20:25:26 +00:00
38 lines
822 B
Plaintext
38 lines
822 B
Plaintext
<h1>Listing matches</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>R</th>
|
|
<th>G</th>
|
|
<th>G stat</th>
|
|
<th>R stat</th>
|
|
<th>Winner</th>
|
|
<th>Win type</th>
|
|
<th>Score</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @matches.each do |match| %>
|
|
<tr>
|
|
<td><%= match.w1_name %></td>
|
|
<td><%= match.w2_name %></td>
|
|
<td><%= match.winner_id %></td>
|
|
<td><%= match.win_type %></td>
|
|
<td><%= match.score %></td>
|
|
<td><%= link_to 'Show', match %></td>
|
|
<td><%= link_to 'Edit', edit_match_path(match) %></td>
|
|
<td><%= link_to 'Destroy', match, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Match', new_match_path %>
|