summaryrefslogtreecommitdiff
path: root/app/views/tournaments/_selected.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/tournaments/_selected.html.erb')
-rw-r--r--app/views/tournaments/_selected.html.erb31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/views/tournaments/_selected.html.erb b/app/views/tournaments/_selected.html.erb
new file mode 100644
index 0000000..5058c56
--- /dev/null
+++ b/app/views/tournaments/_selected.html.erb
@@ -0,0 +1,31 @@
+<%= form_for(@tournament) do |f| %>
+ <% if @tournament.errors.any? %>
+ <div id="error_explanation">
+ <h2><%= pluralize(@tournament.errors.count, "error") %> prohibited this tournament from being saved:</h2>
+
+ <ul>
+ <% @tournament.errors.full_messages.each do |msg| %>
+ <li><%= msg %></li>
+ <% end %>
+ </ul>
+ </div>
+ <% end %>
+
+ <%# this is the dynamic script to output fields to the form %>
+ <% @chosen = Game.find(@game) %>
+ <% @chosen.attributes.each do |name, value| %>
+ <% if name == "id" %>
+ <% next %>
+ <% end %>
+ <% if name == "created_at" %>
+ <% break %>
+ <% end %>
+ <p>
+ <label for=<%= name %>><%= name.capitalize.gsub('_', ' ') %></label>
+ <br />
+ <input type="text" id=<%= name %> value=<%= value %>>
+ </p>
+ <% end %>
+
+ <%= f.submit %>
+<% end %>