%= javascript_include_tag :defaults %>
New tournament
<%= select_tag 'tournament_id', options_for_select(["Select a Game Type"] + Game.all.collect {|game| game.name}), :onchange => 'populate()' %> <%= link_to 'Select', 'new?game=1', :class => "btn btn-warning btn-lg" %>
<% if not @game.nil? %>
<%= render 'selected' %>
<% end %>
<%= link_to 'Select', 'selected', :class => "btn btn-warning btn-lg" %>
<%= link_to 'Back', tournaments_path %>