summaryrefslogtreecommitdiff
path: root/app/views/tournaments/new.html.erb
blob: de80fb7f90c39f0a01a05142d79bc3afd68737fa (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', "create", :class => "btn btn-warning btn-lg", :role => "submit" %>

<%= link_to 'Back', tournaments_path %>