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.
44 lines
822 B
44 lines
822 B
<% title "Employee" %>
|
|
|
|
<p>
|
|
<strong>Number:</strong>
|
|
<%=h @employee.number %>
|
|
</p>
|
|
<p>
|
|
<strong>Firstname:</strong>
|
|
<%=h @employee.firstname %>
|
|
</p>
|
|
<p>
|
|
<strong>Lastname:</strong>
|
|
<%=h @employee.lastname %>
|
|
</p>
|
|
<p>
|
|
<strong>SSN:</strong>
|
|
<%=h @employee.ssn %>
|
|
</p>
|
|
<p>
|
|
<strong>DOB:</strong>
|
|
<%=h @employee.dob %>
|
|
</p>
|
|
<p>
|
|
<strong>Hire Date:</strong>
|
|
<%=h @employee.hired %>
|
|
</p>
|
|
<p>
|
|
<strong>Tax Status:</strong>
|
|
<%=h @employee.tax_status %>
|
|
</p>
|
|
<p>
|
|
<strong>Dependents:</strong>
|
|
<%=h @employee.dependents %>
|
|
</p>
|
|
<p>
|
|
<strong>Pay Rate:</strong>
|
|
<%=h @employee.payrate %>
|
|
</p>
|
|
|
|
<p class="nav">
|
|
<%= link_to "Edit", edit_employee_path(@employee) %> |
|
|
<%= link_to "Destroy", @employee, :confirm => 'Are you sure?', :method => :delete %> |
|
|
<%= link_to "View All", employees_path %>
|
|
</p>
|