Basis of rails-driven app for local business
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

16 lines
514 B

  1. <% form_for @load do |f| %>
  2. <%= f.error_messages %>
  3. <dl>
  4. <dt><%= f.label :number %></dt>
  5. <dd><%= f.text_field :number %></dd>
  6. <dt><%= f.label :start_date %></dt>
  7. <dd><%= f.date_select :start_date %></dd>
  8. <dt><%= f.label :end_date %></dt>
  9. <dd><%= f.date_select :end_date %></dd>
  10. <dt><%= f.label :hub_in %></dt>
  11. <dd><%= f.text_field :hub_in %></dd>
  12. <dt><%= f.label :hub_out %></dt>
  13. <dd><%= f.text_field :hub_out %></dd>
  14. </dl>
  15. <p><%= f.submit "Submit" %></p>
  16. <% end %>