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.
|
|
<% 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> <%= link_to "Edit", edit_employee_path(@employee) %> | <%= link_to "Destroy", @employee, :confirm => 'Are you sure?', :method => :delete %> | <%= link_to "View All", employees_path %> </p>
|