diff --git a/app/views/schools/show.html.erb b/app/views/schools/show.html.erb
index 6ea54ed..6adc1da 100644
--- a/app/views/schools/show.html.erb
+++ b/app/views/schools/show.html.erb
@@ -39,10 +39,9 @@
Seed |
Record |
Seed Criteria |
+ Team Points Scored |
Extra? |
- <% if tournament_permissions(@school.tournament) %>
Actions |
- <% end %>
@@ -57,16 +56,17 @@
<%= wrestler.season_win %>-<%= wrestler.season_loss %> |
<%= wrestler.criteria %> Win <%= wrestler.seasonWinPercentage %>% |
+ <%= wrestler.totalTeamPoints - wrestler.totalDeductedPoints %> |
<% if wrestler.extra? == true %>
Yes
<% end %> |
+
+ <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
<% if tournament_permissions(@school.tournament) %>
- |
- <%= link_to 'Show', wrestler , :class=>"btn btn-default" %>
<%= link_to 'Edit', edit_wrestler_path(wrestler),:class=>"btn btn-primary" %>
<%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %>
- |
- <% end %>
+ <% end %>
+
<% end %>
<% end %>