WrestlingApp
    <% if @tournament %>
  • <%= link_to "Brackets" , "/static_pages/weights?tournament=#{@tournament.id}" %>
  • <%= link_to "Upcoming Matches" , "/static_pages/up_matches?tournament=#{@tournament.id}" %>
  • <%= link_to "Results" , "/static_pages/results?tournament=#{@tournament.id}" %>
  • <%= link_to "Team Scores" , "/static_pages/team_scores?tournament=#{@tournament.id}" %>
  • <% end %> <% if user_signed_in? %>
  • <%= link_to "Log Out", destroy_user_session_path, method: :delete %>
  • <% else %>
  • <%= link_to "Log In" , new_user_session_path %>
  • <% end %>