summaryrefslogtreecommitdiff
path: root/app/views/tournaments/new.html.erb
blob: 6c3fefccfdd9e510b2e5d06482230735f2ced2d6 (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', @game.nil? || @game.id),
	               :prompt => "Select a Game Type") %>
	<%= submit_tag("Select", :class => "btn-warning btn-lg") %>
<% end %>

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

<%= link_to 'Back', tournaments_path %>