add user manual for zone

This commit is contained in:
phyusin
2017-10-23 17:59:35 +06:30
parent d3dfabd66a
commit ba18e722d7
33 changed files with 446 additions and 165 deletions

View File

@@ -1,29 +1,56 @@
<p id="notice"><%= notice %></p>
<div class="page-header">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<%= settings_tax_profile_path %>">Home</a></li>
<li class="breadcrumb-item"><a href="<%= settings_tax_profile_path %>">Tax Profiles</a></li>
<li class="breadcrumb-item active">Details</li>
<span class="float-right">
<%= link_to t('.back', :default => t("views.btn.back")), settings_tax_profile_path %>
</span>
</ol>
</div>
<p>
<strong>Name:</strong>
<%= @settings_tax_profile.name %>
</p>
<div class="card">
<div class="card-block">
<h4 class="card-title">Tax Profiles</h4>
<table class="table">
<tr>
<td><strong>Name:</strong></td>
<td><%= @settings_tax_profile.name %></td>
</tr>
<p>
<strong>Rate:</strong>
<%= @settings_tax_profile.rate %>
</p>
<tr>
<td><strong>Rate:</strong></td>
<td><%= @settings_tax_profile.rate %></td>
</tr>
<p>
<strong>Inclusive:</strong>
<%= @settings_tax_profile.inclusive %>
</p>
<tr>
<td><strong>Inclusive:</strong></td>
<td><%= @settings_tax_profile.inclusive %></td>
</tr>
<p>
<strong>Order by:</strong>
<%= @settings_tax_profile.order_by %>
</p>
<tr>
<td><strong>Order by:</strong></td>
<td><%= @settings_tax_profile.order_by %></td>
</tr>
<p>
<strong>Created by:</strong>
<%= @settings_tax_profile.created_by %>
</p>
<tr>
<td><strong>Created by:</strong></td>
<td><%= @settings_tax_profile.created_by %></td>
</tr>
<%= link_to t("views.btn.edit"), edit_settings_tax_profile_path(@settings_tax_profile) %> |
<%= link_to t('.new', :default => t("views.btn.new")), settings_tax_profiles_path %>
<tr>
<td colspan="2" align="right">
<%= link_to t("views.btn.edit"), edit_settings_tax_profile_path(@settings_tax_profile),:class => "btn btn-info ben-sm waves-effer" %>
<button class="delete btn btn-danger btn-sm waves-effect" data-ref="<%= settings_tax_profile_path(@settings_tax_profile)%>" 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>
</table>
</div>
</div>