39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
<div class="page-header">
|
|
<ul class="breadcrumb">
|
|
<li><a href="<%= settings_commissions_path %>">Home</a></li>
|
|
<li>Commissions</li>
|
|
<span style="float: right">
|
|
<%= link_to t("views.btn.new"), new_settings_commission_path, :class => 'btn btn-primary btn-sm' %>
|
|
</span>
|
|
</ul>
|
|
</div>
|
|
|
|
<br>
|
|
<div class="card">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Product Name</th>
|
|
<th>Commission Type</th>
|
|
<th>Amount</th>
|
|
<th>Active</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @commissions.each do |commission| %>
|
|
<tr>
|
|
<td><%= commission.menu_item.name rescue '-' %></td>
|
|
<td><%= commission.commission_type rescue '-' %></td>
|
|
<td><%= commission.amount rescue '-' %></td>
|
|
<td><%= commission.is_active rescue '-' %></td>
|
|
<td><%= link_to t("views.btn.show"), settings_commissions_path(commission) %></td>
|
|
<td><%= link_to t("views.btn.edit"), edit_settings_commission_path(commission) %></td>
|
|
<td><%= link_to t("views.btn.delete"), settings_commission_path(commission), method: :delete, data: {confirm: 'Are you sure?'} %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|