Listing Tournaments
<% if @tournaments.length > 0 %>
<%# Each tournament has a div for its listing %>
<% @tournaments.each do |t| %>
<%= render "common/show_tournament", :target => t %>
<% end %>
<% else %>
No tournaments going on right now...
<% if current_user.can?(:create_tournament) %>
Why not start your own?
<% end %>
<% end %>
<% if current_user.can?(:create_tournament) %>
<%= link_to 'New Tournament', new_tournament_path, :class => "btn btn-warning btn-lg" %>
<% end %>