From 91fee659eadaf6bcc4d063fd5645950da1250896 Mon Sep 17 00:00:00 2001 From: AndrewMurrell Date: Sun, 6 Apr 2014 22:20:24 -0400 Subject: A few bug fixes, and a bunch of code that almost works. --- app/views/tournaments/_selected.html.erb | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) (limited to 'app/views') diff --git a/app/views/tournaments/_selected.html.erb b/app/views/tournaments/_selected.html.erb index 3661077..b66acb0 100644 --- a/app/views/tournaments/_selected.html.erb +++ b/app/views/tournaments/_selected.html.erb @@ -2,7 +2,7 @@ <%= render "common/error_messages", :target => @tournament %> <%= f.hidden_field(:game_id) %> - <% @game = Game.find_by(params[:game]) %> + <% @game = Game.find(params[:game]) %> <% @tournament.attributes.each do |name, value| %> <% if (name == "id") or (name =~ /.*_at$/) or (name == "game_id") or (name == "status") or (name == "set_rounds") %> <% next %> @@ -17,24 +17,5 @@

<% end %> - <% @settings = GameSetting.find_by(params[:game_id]) %> - <% unless @settings %> -
-
-
-
-
-
-
-
- <% end %> - <% @settings.each do |setting| %> -

- <%= f.label setting.name %>
- <% #eventually display by non-generic input method %> - <%= f.select :setting options_from_collection_for_select([setting.description, ""].append setting.type_opt.split(',')) %> -

- <% end %> - - <%= f.submit %> + <%= f.submit %> <% end %> -- cgit v1.2.3-2-g168b