summaryrefslogtreecommitdiff
path: root/app/views/tournaments/_form.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-28 12:41:18 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-28 12:41:18 -0400
commit4487d51e90f4e9c985d2fb235b7c0dce43cf0bc7 (patch)
tree7307cc1b41d3c5c0222bdd500a052b7e87e35f50 /app/views/tournaments/_form.html.erb
parent4252af58c04e119ccce42d57352a836f273d6979 (diff)
misc view cleanups
Diffstat (limited to 'app/views/tournaments/_form.html.erb')
-rw-r--r--app/views/tournaments/_form.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/tournaments/_form.html.erb b/app/views/tournaments/_form.html.erb
index 0937fd2..fdf36e8 100644
--- a/app/views/tournaments/_form.html.erb
+++ b/app/views/tournaments/_form.html.erb
@@ -1,7 +1,7 @@
<%= render "common/error_messages", :target => @tournament %>
<fieldset>
+ <legend>Game type</legend>
<%= form_for(@tournament, url: new_tournament_path, method: "get") do |f| %>
- <%= render "common/error_messages", :target => @tournament %>
<p>
<%= f.label :game_id, "Select a game type" %>
<%= f.select(:game_id, Game.all.map{|game| [game.name, game.id]}) %>