Displaying 2 results from an estimated 2 matches for "entered_on_d".
2006 Jun 22
11
Help please
...osition.title) %></td>
<td><%= (position.category.name) %></td>
<td><%= (position.comapny_id) %></td>
<td><%= (position.city) %></td>
<td><%= (position.state.name) %></td>
<td><%= (position.entered_on_date) %></td>
</tr>
Here is the method in the controller:
def positionslist
@positions = (Position.find_all)
end
The model:
class Position < ActiveRecord::Base
belongs_to :category
belongs_to :contactmethod
belongs_to :edureq
belongs_to :expreq...
2006 Aug 03
1
OT: Tables and Rails code
...uot;>PayType</th>
<th scope="col">Exp reqd</th>
</tr>
</thead>
<tfoot>
</tfoot>
<tbody>
<tr >
<td><%= position.company_job_id %></td>
<td><%= position.comapny_id %></td>
<td><%= position.entered_on_date.strftime("%m/%d/%Y") %></td>
<td><%= position.start_on_date.strftime("%m/%d/%Y") %></td>
<td><%= position.display_length %></td>
<td><%= position.days_left %></td>
<td><%= position.category_id %></t...