1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added deducted points to views

This commit is contained in:
2016-01-12 18:29:19 +00:00
parent c6626988db
commit 19d49abca7
2 changed files with 13 additions and 2 deletions

View File

@@ -12,6 +12,10 @@
<%= @school.name %>
</p>
<p>
<strong>Team Points Deducted:</strong>
<%= @school.totalDeductedPoints %>
</p>
<p>
<strong>Score:</strong>
<%= @school.score %>

View File

@@ -22,9 +22,16 @@
<strong>Weight:</strong>
<%= @wrestler.weight.max %>
</p>
<p>
<strong>Team Points Scored:</strong>
<strong>Team Points Earned:</strong>
<%= @wrestler.teamPointsEarned %>
</p>
<p>
<strong>Team Points Deducted:</strong>
<%= @wrestler.totalDeductedPoints %>
</p>
<p>
<strong>Total Team Points Scored:</strong>
<%= @wrestler.totalTeamPoints %>
</p>