27 lines
476 B
Plaintext
27 lines
476 B
Plaintext
<h1>New mash</h1>
|
|
|
|
<% form_for(@mash) do |f| %>
|
|
<%= f.error_messages %>
|
|
|
|
<p>
|
|
<%= f.label :requester %><br />
|
|
<%= f.text_field :requester %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :map_a %><br />
|
|
<%= f.text_field :map_a %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :map_b %><br />
|
|
<%= f.text_field :map_b %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :winner %><br />
|
|
<%= f.text_field :winner %>
|
|
</p>
|
|
<p>
|
|
<%= f.submit 'Create' %>
|
|
</p>
|
|
<% end %>
|
|
|
|
<%= link_to 'Back', mashes_path %> |