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

37 lines
1017 B
Plaintext

<div class="container mt-5">
<h1 class="mb-4 text-center">Workers</h1>
<div class="text-center mt-3">
<%= link_to 'New Worker', new_worker_path, class: 'btn btn-success mb-3' %>
</div>
<table class="table table-striped table-hover">
<thead class="table-dark">
<tr>
<th>Name</th>
<th>Address</th>
<th>Phone</th>
<th>Email</th>
<th>DOB</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.strftime('%B %d, %Y') if worker.dob %></td>
<td>
<%= link_to 'Show', worker_path(worker), class: 'btn btn-sm btn-info' %>
<%= link_to 'Edit', edit_worker_path(worker), class: 'btn btn-sm btn-primary' %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>