New Tournament
<%= form_tag(new_tournament_path, method: "get") do %>
<%= select_tag('game',
options_from_collection_for_select(@games, 'id', 'name', @tournament.game.nil? || @tournament.game.id),
:prompt => "Select a Game Type") %>
<%= submit_tag("Select", :class => "btn btn-success btn-xs") %>
<% end %>
<% if not @tournament.game.nil? %>
<%= render 'selected' %>
<% end %>
<%= link_to 'Back', tournaments_path %>