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

<%= select_tag 'tournament_id', options_for_select(["Select a Game Type"] + Game.all.collect {|game| game.name}), :onchange => 'populate()' %>

<br />
<div id='ajax-form'>
</div>
<br /><br />
<p id=jumbo-buttons>
<%= link_to 'Create Tournament', "#", :class => "btn btn-warning btn-lg" %>

<%= link_to 'Back', tournaments_path %>