% if @tournament %>
Tournament Links
- <%= link_to "Tournament home" , "/tournaments/#{@tournament.id}/" %>
- <%= link_to "Brackets" , "/tournaments/#{@tournament.id}/brackets" %>
- <%= link_to "Bout Board" , "/tournaments/#{@tournament.id}/up_matches" %>
- <%= link_to "Team Scores" , "/tournaments/#{@tournament.id}/team_scores" %>
<% if can? :manage, @tournament %>
Tournament Director Links
Pages
<%= link_to "Weigh In Page" , "/tournaments/#{@tournament.id}/weigh_in" %>
<%= link_to "All Matches" , "/tournaments/#{@tournament.id}/matches" %>
<%= link_to "Full Screen Bout Board" , "/tournaments/#{@tournament.id}/up_matches?print=true" %>
<%= link_to "Deduct Team Points" , "/tournaments/#{@tournament.id}/teampointadjust" %>
<% if can? :destroy, @tournament %>
<%= link_to "Tournament Delegation" , "/tournaments/#{@tournament.id}/delegate" %>
<% end %>
<%= link_to "School Delegation" , "/tournaments/#{@tournament.id}/school_delegate"%>
Time Savers
<%= link_to "Create High School Weights" , "/tournaments/#{@tournament.id}/create_custom_weights?customValue=hs",data: { confirm: 'Are you sure? This will delete all current weights.' } %>
Tournament Actions
<%= link_to "Generate Brackets" , "/tournaments/#{@tournament.id}/generate_matches", data: { confirm: 'Are you sure? This will delete all current matches.' } %>
<% end %>
<% end %>
<% if Rails.env.production? %>
<% end %>