48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
<div class="page-header">
|
|
<ul class="breadcrumb">
|
|
<li><a href="<%= origami_root_path %>">Home</a></li>
|
|
<li><a href="<%= origami_commissioners_path %>">Commissioners</a></li>
|
|
|
|
<span style="float: right">
|
|
</span>
|
|
</ul>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-block">
|
|
<h4 class="card-title">Commissioner</h4>
|
|
<table class="table">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td style="width:20%">Name</td>
|
|
<td><%= @commissioner.name %></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width:20%">Employee Name</td>
|
|
<td>
|
|
<%= @commissioner.employee.name rescue '-' %>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width:20%">Commission Type</td>
|
|
<td><%= @commissioner.commission.menu_item.name rescue '-' %></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width:20%">Active</td>
|
|
<td><%= @commissioner.is_active %></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width:20%">Created By</td>
|
|
<td><%= Employee.find(@commissioner.created_by).name %></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<%= link_to 'Back', origami_commissioners_path, class: 'btn btn-success' %>
|
|
<%= link_to 'Edit', edit_origami_commissioner_path(@commissioner), class: 'btn btn-info' %>
|
|
<%= link_to 'Destroy', origami_commissioner_path(@commissioner), method: :delete, data: {confirm: 'Are you sure?'}, class: 'btn btn-danger' %>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|