Files
sx-fc/app/views/print_settings/show.html.erb
2017-10-23 17:59:35 +06:30

87 lines
2.9 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="<%= print_settings_path %>">Print Setting</a></li>
<li class="breadcrumb-item active">Details</li>
<span class="float-right">
<%= link_to t('.back', :default => t("views.btn.back")), settings_employees_path %>
</span>
</ol>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-9 col-lg-9">
<div class="card">
<div class="card-block">
<table class="table">
<tbody>
<tr>
<th>Name</th>
<td><%= @print_setting.name %></td>
</tr>
<tr>
<th>Unique code</th>
<td><%= @print_setting.unique_code %></td>
</tr>
<tr>
<th>Template</th>
<td><%= @print_setting.template %></td>
</tr>
<tr>
<th>Printer name</th>
<td><%= @print_setting.printer_name %></td>
</tr>
<tr>
<th>Font</th>
<td><%= @print_setting.font rescue '-' %></td>
</tr>
<tr>
<th>Api settings</th>
<td><%= @print_setting.api_settings %></td>
</tr>
<tr>
<th>Page width</th>
<td><%= @print_setting.page_width %></td>
</tr>
<tr>
<th>Page height</th>
<td><%= @print_setting.page_height %></td>
</tr>
<tr>
<th>Print copies</th>
<td><%= @print_setting.print_copies %></td>
</tr>
<tr>
<td colspan="2" align="right">
<%= link_to t("views.btn.edit"), edit_print_setting_path(@print_setting),:class => 'btn btn-info btn-sm waves-effect' %>
<button class="delete btn btn-danger btn-sm waves-effect" data-ref="<%= print_settings_path(@print_setting)%>" 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>
</div>
<div class="col-xs-12 col-sm-12 col-md-3 col-lg-3">
<div class="card">
<div class="body">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
</div>
</div>
</div>
</div>