40 lines
967 B
Plaintext
40 lines
967 B
Plaintext
|
<h1>Employers</h1>
|
||
|
|
||
|
<%= link_to 'New Employer', new_employer_path %>
|
||
|
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<th>Address</th>
|
||
|
<th>Phone</th>
|
||
|
<th>Email</th>
|
||
|
<th>TIN</th>
|
||
|
<th>DOB</th>
|
||
|
<th>SSN</th>
|
||
|
<th>Gender</th>
|
||
|
<th>Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% @employers.each do |employer| %>
|
||
|
<tr>
|
||
|
<td><%= employer.name %></td>
|
||
|
<td><%= employer.address %></td>
|
||
|
<td><%= employer.phone %></td>
|
||
|
<td><%= employer.email %></td>
|
||
|
<td><%= employer.tin %></td>
|
||
|
<td><%= employer.dob %></td>
|
||
|
<td><%= employer.ssn %></td>
|
||
|
<td><%= employer.gender %></td>
|
||
|
<td>
|
||
|
<%= link_to 'Show', employer %>
|
||
|
<%= link_to 'Edit', edit_employer_path(employer) %>
|
||
|
<%= link_to 'Destroy', @employer, method: :delete, data: { confirm: 'Are you sure?', turbo: 'false' } %>
|
||
|
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</tbody>
|
||
|
</table>
|