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.
|
|
<% 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 %>
|