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 %> <dl> <dt><%= f.label :number %></dt> <dd><%= f.text_field :number %></dd> <dt><%= f.label :start_date %></dt> <dd><%= f.date_select :start_date %></dd> <dt><%= f.label :end_date %></dt> <dd><%= f.date_select :end_date %></dd> <dt><%= f.label :hub_in %></dt> <dd><%= f.text_field :hub_in %></dd> <dt><%= f.label :hub_out %></dt> <dd><%= f.text_field :hub_out %></dd> </dl> <p><%= f.submit "Submit" %></p> <% end %>
|