1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-22 22:37:01 +00:00

Refactored names of methods and some db column

This commit is contained in:
2018-11-13 14:14:48 +00:00
parent 93be525832
commit d67a8f2b42
44 changed files with 350 additions and 350 deletions

View File

@@ -55,7 +55,7 @@
</tr>
<tr>
<td>Placement Points</td>
<td>+<%= @wrestler_points_calc.placementPoints %></td>
<td>+<%= @wrestler_points_calc.placement_points %></td>
</tr>
<tr>
<td>Deducted Points</td>
@@ -86,12 +86,12 @@
</tr>
</thead>
<tbody>
<% @wrestler.allMatches.each do |m| %>
<% @wrestler.all_matches.each do |m| %>
<tr>
<td><%= m.bout_number %></td>
<td><%= m.bracket_position %></td>
<td><%= m.list_w1_stats %><br><%= m.list_w2_stats %></td>
<td><%= @wrestler.resultByBout(m.bout_number) %>
<td><%= @wrestler.result_by_bout(m.bout_number) %>
</tr>
<% end %>
</tbody>