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.

29 lines
809 B

  1. <% form_for @load do |f| %>
  2. <%= f.error_messages %>
  3. <div class="left">
  4. <fieldset>
  5. <legend>Trip Info</legend>
  6. <table cellspacing="0">
  7. <tr>
  8. <th></th><th></th><th></th><th></th><th></th>
  9. <th></th><th></th><th></th><th></th><th></th>
  10. </tr>
  11. <tr>
  12. <td colspan="4"><label>Trip Number</label></td>
  13. <td colspan="3"><label>Hub In</label></td>
  14. <td colspan="3"><label>Hub Out</label></td>
  15. </tr>
  16. <tr>
  17. <td colspan="4" class="border">
  18. <%= f.text_field :number, :size => "8" %></td>
  19. <td colspan="3" class="border">
  20. <%= f.text_field :hub_in, :size => "8" %></td>
  21. <td colspan="3" class="border">
  22. <%= f.text_field :hub_out, :size => "8" %></td>
  23. </tr>
  24. </table>
  25. </fieldset>
  26. </div>
  27. <hr noshade size="1" class="clear">
  28. <p><%= f.submit "Submit" %></p>
  29. <% end %>