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.
29 lines
809 B
29 lines
809 B
<% form_for @load do |f| %>
|
|
<%= f.error_messages %>
|
|
<div class="left">
|
|
<fieldset>
|
|
<legend>Trip Info</legend>
|
|
<table cellspacing="0">
|
|
<tr>
|
|
<th></th><th></th><th></th><th></th><th></th>
|
|
<th></th><th></th><th></th><th></th><th></th>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4"><label>Trip Number</label></td>
|
|
<td colspan="3"><label>Hub In</label></td>
|
|
<td colspan="3"><label>Hub Out</label></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4" class="border">
|
|
<%= f.text_field :number, :size => "8" %></td>
|
|
<td colspan="3" class="border">
|
|
<%= f.text_field :hub_in, :size => "8" %></td>
|
|
<td colspan="3" class="border">
|
|
<%= f.text_field :hub_out, :size => "8" %></td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
<hr noshade size="1" class="clear">
|
|
<p><%= f.submit "Submit" %></p>
|
|
<% end %>
|