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.

24 lines
504 B

  1. <% form_for @load do |f| %>
  2. <%= f.error_messages %>
  3. <p>
  4. <%= f.label :number %><br />
  5. <%= f.text_field :number %>
  6. </p>
  7. <p>
  8. <%= f.label :start_date %><br />
  9. <%= f.date_select :start_date %>
  10. </p>
  11. <p>
  12. <%= f.label :end_date %><br />
  13. <%= f.date_select :end_date %>
  14. </p>
  15. <p>
  16. <%= f.label :hub_in %><br />
  17. <%= f.text_field :hub_in %>
  18. </p>
  19. <p>
  20. <%= f.label :hub_out %><br />
  21. <%= f.text_field :hub_out %>
  22. </p>
  23. <p><%= f.submit "Submit" %></p>
  24. <% end %>