obdev/app/views/workers/index.html.erb

37 lines
891 B
Plaintext

<h1>Workers</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Address</th>
<th>Phone</th>
<th>Email</th>
<th>DOB</th>
<th>SSN</th>
<th>Gender</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<% @workers.each do |worker| %>
<tr>
<td><%= worker.name %></td>
<td><%= worker.address %></td>
<td><%= worker.phone %></td>
<td><%= worker.email %></td>
<td><%= worker.dob %></td>
<td><%= worker.ssn %></td>
<td><%= worker.gender %></td>
<td>
<%= link_to 'Show', worker_path(worker) %> |
<%= link_to 'Edit', edit_worker_path(worker) %> |
<%= link_to 'Destroy', worker_path(worker), method: :delete, data: { confirm: 'Are you sure?' } %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= link_to 'New Worker', new_worker_path %>