summaryrefslogtreecommitdiff
path: root/app/views/tournaments/new.html.erb
blob: e007e31ac89f6983ff555a996ca67630992b1d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h1>New Tournament</h1>

<%= 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-warning btn-lg") %>
<% end %>

<div id='ajax-form'>
	<% unless @tournament.game.nil? %>
		<%= render 'selected' %>
	<% end %>
</div>

<%= link_to 'Back', tournaments_path %>