Files
sx-fc/app/views/print_settings/show.html.erb
2017-10-11 15:16:40 +06:30

67 lines
1.4 KiB
Plaintext

<div class="page-header">
<ul class="breadcrumb">
<li><a href="<%= root_path %>">Home</a></li>
<li><a href="<%= print_settings_path %>">Print Setting</a></li>
<span style="float: right">
<li>
<%= link_to 'Edit', edit_print_setting_path(@print_setting) %> |
<%= link_to 'Back', print_settings_path %>
</li>
</span>
</ul>
</div>
<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 %></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>
</tbody>
</table>
</div>
</div>
</div>