Files
sx-fc/app/views/settings/employees/show.html.erb
2017-07-05 11:51:43 +06:30

38 lines
758 B
Plaintext

<div class="page-header">
<ul class="breadcrumb">
<li><a href="<%= root_path %>">Home</a></li>
<li><a href="<%= settings_employees_path %>">Employee</a></li>
<span style="float: right">
</span>
</ul>
</div>
<div class="card">
<div class="card-block">
<h4 class="card-title">Employee</h4>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Role</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><%= @employee.name %></td>
<td><%= @employee.role %></td>
<td>
<%= link_to 'Edit', edit_settings_employee_path(@employee) %>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>