You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
504 B
24 lines
504 B
<% form_for @load do |f| %>
|
|
<%= f.error_messages %>
|
|
<p>
|
|
<%= f.label :number %><br />
|
|
<%= f.text_field :number %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :start_date %><br />
|
|
<%= f.date_select :start_date %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :end_date %><br />
|
|
<%= f.date_select :end_date %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :hub_in %><br />
|
|
<%= f.text_field :hub_in %>
|
|
</p>
|
|
<p>
|
|
<%= f.label :hub_out %><br />
|
|
<%= f.text_field :hub_out %>
|
|
</p>
|
|
<p><%= f.submit "Submit" %></p>
|
|
<% end %>
|