Name: <%= @school.name %> <% if can? :manage, @school %> <% edit_school_path_with_key = edit_school_path(@school) %> <% edit_school_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <%= link_to " Edit", edit_school_path_with_key, class: "fas fa-edit" %> <% end %>

Team Points Deducted: <%= @school.total_points_deducted %>

Score: <%= @school.score %>

Tournament: <%= @school.tournament.name %>

<% stat_summary_path_with_key = "/schools/#{@school.id}/stats" %> <% stat_summary_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <%= link_to "#{@school.name} Stat Summary", stat_summary_path_with_key, class: "btn btn-sm btn-primary" %>

Roster

(Click wrestler to see their score breakdown and match list)

<% new_wrestler_path_with_key = new_wrestler_path(school: @school.id) %> <% new_wrestler_path_with_key += "&school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <% if can? :manage, @school %> <% end %> <% @wrestlers.sort_by { |w| w.weight.max }.each do |wrestler| %> <% if params[:school_permission_key].present? %> <% if can? :manage, wrestler.school %> <% end %> <% else %> <% cache ["#{wrestler.id}_school_show", @school] do %> <% end %> <% if can? :manage, wrestler.school %> <% end %> <% end %> <% end %>
Name Weight Record/Seed Criteria Seed Team Points Scored Extra? Next Bout/Mat<%= link_to " New Wrestler", new_wrestler_path_with_key, class: "fas fa-plus" %>
<% wrestler_path_with_key = wrestler_path(wrestler) %> <% wrestler_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <%= link_to wrestler.name, wrestler_path_with_key %> <%= wrestler.weight.max %> <%= wrestler.season_win %>-<%= wrestler.season_loss %> <%= wrestler.criteria %> <%= wrestler.original_seed %> <%= wrestler.total_team_points - wrestler.total_points_deducted %> <%= "Yes" if wrestler.extra? %> <%= wrestler.next_match_bout_number %> <%= wrestler.next_match_mat_name %> <% edit_wrestler_path_with_key = edit_wrestler_path(wrestler) %> <% edit_wrestler_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <% delete_wrestler_path_with_key = wrestler_path(wrestler) %> <% delete_wrestler_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <%= link_to edit_wrestler_path_with_key, class: "text-decoration-none" do %> <% end %> <%= link_to delete_wrestler_path_with_key, data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete #{wrestler.name}? This will delete all of his matches." }, class: "text-decoration-none" do %> <% end %>
<%= link_to wrestler.name, wrestler_path(wrestler) %> <%= wrestler.weight.max %> <%= wrestler.season_win %>-<%= wrestler.season_loss %> <%= wrestler.criteria %> <%= wrestler.original_seed %> <%= wrestler.total_team_points - wrestler.total_points_deducted %> <%= "Yes" if wrestler.extra? %> <%= wrestler.next_match_bout_number %> <%= wrestler.next_match_mat_name %> <% edit_wrestler_path_with_key = edit_wrestler_path(wrestler) %> <% edit_wrestler_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <% delete_wrestler_path_with_key = wrestler_path(wrestler) %> <% delete_wrestler_path_with_key += "?school_permission_key=#{params[:school_permission_key]}" if params[:school_permission_key].present? %> <%= link_to edit_wrestler_path_with_key, class: "text-decoration-none" do %> <% end %> <%= link_to delete_wrestler_path_with_key, data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete #{wrestler.name}? This will delete all of his matches." }, class: "text-decoration-none" do %> <% end %>
<%# if can? :manage, @school %> <%#= render 'baums_roster_import' %> <%# end %>