54 lines
1.8 KiB
Plaintext
Executable File
54 lines
1.8 KiB
Plaintext
Executable File
<!-- -->
|
|
<div class="page-header">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<%= dashboard_path %>">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="<%= settings_accounts_path %>">Account</a></li>
|
|
<li class="breadcrumb-item active">Details</li>
|
|
<span class="float-right">
|
|
<%= link_to t('.back', :default => t("views.btn.back")), settings_accounts_path %>
|
|
</span>
|
|
</ol>
|
|
</div>
|
|
|
|
<br/>
|
|
<div class="card">
|
|
<div class="card-block">
|
|
<h4 class="card-title">Account</h4>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Account type</th>
|
|
<!-- <th>Can get Discount</th> -->
|
|
<th>Can get Points</th>
|
|
<!-- <th>Can get Bonus</th> -->
|
|
<th>Can rebate</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td><%= @settings_account.title %></td>
|
|
<td><%= @settings_account.account_type %></td>
|
|
<!-- <td><%= @settings_account.discount %></td> -->
|
|
<td><%= @settings_account.point %></td>
|
|
<!-- <td><%= @settings_account.bonus %></td> -->
|
|
<td><%= @settings_account.rebate %></td>
|
|
|
|
<td><%= link_to t("views.btn.edit"), edit_settings_account_path(@settings_account),:class => 'btn btn-primary btn-sm waves-effect' %>
|
|
<button class="delete btn btn-danger btn-sm waves-effect" data-ref="<%= settings_account_path(@settings_account)%>" data-method="delete">
|
|
<%= t("views.btn.delete") %>
|
|
</button>
|
|
|
|
<span class="hidden" id="delete_text">
|
|
<h6>Are you sure you want to delete this row ?</h6>
|
|
<h6>This action can't be undo. </h6>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|