mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
39 lines
503 B
Plaintext
39 lines
503 B
Plaintext
|
|
<p>
|
|
<strong>R:</strong>
|
|
<%= @match.w1_name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>G:</strong>
|
|
<%= @match.w2_name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>G stat:</strong>
|
|
<%= @match.g_stat %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>R stat:</strong>
|
|
<%= @match.r_stat %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Winner:</strong>
|
|
<%= @match.winner_id %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Win type:</strong>
|
|
<%= @match.win_type %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Score:</strong>
|
|
<%= @match.score %>
|
|
</p>
|
|
|
|
<%= link_to 'Edit', edit_match_path(@match) %> |
|
|
<%= link_to 'Back', matches_path %>
|