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
724 B

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