Pick A Tournament

<% if user_signed_in? %> <%= link_to 'New Tournament', new_tournament_path, :class=>"btn btn-success" %> <% end %>

<% @tournaments.each do |tournament| %> <% end %>
Name
<%= tournament.name %> <%= link_to 'Show', tournament, :class=>"btn btn-default" %> <% if tournament_permissions(tournament) %> <%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn btn-primary" %> <%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %> <% end %>