<%= form_for([@tournament, @tournament.matches.build]) do |f| %>
<%= f.label :status %>
<%= f.number_field :status %>
<%= f.label :tournament_stage_id %>
<%= f.text_field :tournament_stage_id %>
<%= f.label :winner_id %>
<%= f.text_field :winner_id %>
<%= f.label :remote_id %>
<%= f.text_area :remote_id %>
<%= f.label :submitted_peer_evaluations %>
<%= f.number_field :submitted_peer_evaluations %>
<%= f.submit %>
<% end %>