<%= notice %>

Weight Class:<%= @weight.max %>

<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" %> | <% if user_signed_in? %> <%= link_to "Edit #{@weight.max} Weight Class", edit_weight_path(@weight) %> | <% end %>


<% @wrestler.each do |wrestler| %> <% if wrestler.weight_id == @weight.id %> <% end %> <% end %> <% end %>
Name School Seed Record Actions for wrestler
<%= wrestler.name %> <%= School.find(wrestler.school_id).name %> <%= wrestler.original_seed %> <%= wrestler.season_win %>-<%= wrestler.season_loss %> <%= link_to 'Show', wrestler , :class=>"btn" %> <% if user_signed_in? %> <%= link_to 'Edit', edit_wrestler_path(wrestler) , :class=>"btn" %> <%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' } , :class=>"btn btn-danger" %>