WrestlingDev
    <% if @tournament %>
  • <%= link_to "Brackets" , "/tournaments/#{@tournament.id}/brackets" %>
  • <%= link_to "Upcoming Matches" , "/tournaments/#{@tournament.id}/up_matches" %>
  • <%= link_to "Results" , "/tournaments/#{@tournament.id}/results" %>
  • <%= link_to "Team Scores" , "/tournaments/#{@tournament.id}/team_scores" %>
  • <% end %>
  • <%= link_to "About", "/static_pages/about" %>
  • <% if user_signed_in? %>
  • <%=link_to "Log out", destroy_user_session_url ,:method => 'delete' %>
  • <%=link_to "Edit user", edit_user_registration_path %>
  • <% else %>
  • <%= link_to "Log In" , new_user_session_path %>
  • <% end %>