mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
11 lines
409 B
Plaintext
11 lines
409 B
Plaintext
<% cache ["weight_show_wrestler_row", wrestler] do %>
|
|
<tr>
|
|
<td><%= link_to wrestler.name, wrestler %></td>
|
|
<td><%= wrestler.school.name %></td>
|
|
<td><%= wrestler.original_seed %></td>
|
|
<td><%= wrestler.season_win %>-<%= wrestler.season_loss %></td>
|
|
<td><%= wrestler.criteria %> Win <%= wrestler.season_win_percentage %>%</td>
|
|
<td><%= "Yes" if wrestler.extra? %></td>
|
|
</tr>
|
|
<% end %>
|