<h1>Listing tournaments</h1> <table class="table table-hover"> <thead> <tr> <th>Game</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @tournaments.each do |tournament| %> <tr> <td><%= %></td> <td><%= link_to 'Show', tournament %></td> <td><%= link_to 'Edit', edit_tournament_path(tournament) %></td> <td><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Tournament', new_tournament_path, :class => "btn btn-warning" %>