summaryrefslogtreecommitdiff
path: root/app/views/matches/_form.html.erb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-03-25 17:38:38 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-03-25 17:38:38 -0400
commit53b4f8028fc987b0cf26a7a073fec7064b4b6d8a (patch)
treed277b31519df83e8a1c060b04c6ea6cf50b5c361 /app/views/matches/_form.html.erb
parent0c22c4bd9a0b4a0b0ff5840c1af41c0b320e3529 (diff)
revert Guntas
Diffstat (limited to 'app/views/matches/_form.html.erb')
-rw-r--r--app/views/matches/_form.html.erb23
1 files changed, 2 insertions, 21 deletions
diff --git a/app/views/matches/_form.html.erb b/app/views/matches/_form.html.erb
index 727c002..015aed0 100644
--- a/app/views/matches/_form.html.erb
+++ b/app/views/matches/_form.html.erb
@@ -1,20 +1,5 @@
-<%= form_for(@match) do |f| %>
- <% if @match.errors.any? %>
- <div id="error_explanation">
- <h2><%= pluralize(@match.errors.count, "error") %> prohibited this match from being saved:</h2>
-
- <ul>
- <% @match.errors.full_messages.each do |msg| %>
- <li><%= msg %></li>
- <% end %>
- </ul>
- </div>
- <% end %>
-
- <div class="field">
- <%= f.label :status %><br>
- <%= f.number_field :status %>
- </div>
+<%= form_for([@tournament, @tournament.matches.build]) do |f| %>
+
<div class="field">
<%= f.label :tournament_id %><br>
<%= f.text_field :tournament_id %>
@@ -23,10 +8,6 @@
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
- <div class="field">
- <%= f.label :winner_id %><br>
- <%= f.text_field :winner_id %>
- </div>
<div class="actions">
<%= f.submit %>
</div>