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.
24 lines
724 B
24 lines
724 B
<% form_for @load do |f| %>
|
|
<%= f.error_messages %>
|
|
<div id="load_detail">
|
|
<fieldset>
|
|
<legend>Load Detail</legend>
|
|
<table cellspacing="0">
|
|
<col /><col /><col /><col /><col />
|
|
<col /><col /><col /><col /><col />
|
|
<tr>
|
|
<td colspan="4"><%= f.label :number, "Trip Number" %></td>
|
|
<td colspan="3"><%= f.label :hub_in %></td>
|
|
<td colspan="3"><%= f.label :hub_out %></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4" class="border"><%= f.text_field :number %></td>
|
|
<td colspan="3" class="border"><%= f.text_field :hub_in %></td>
|
|
<td colspan="3" class="border"><%= f.text_field :hub_out %></td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
<hr noshade size="1" class="clear">
|
|
<p><%= f.submit "Submit" %></p>
|
|
<% end %>
|