Files
sx-fc/app/views/print_settings/show.html.erb
2017-07-05 11:51:43 +06:30

79 lines
1.8 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>Db name</th>
<td><%= @print_setting.db_name %></td>
</tr>
<tr>
<th>Db type</th>
<td><%= @print_setting.db_type %></td>
</tr>
<tr>
<th>Db username</th>
<td><%= @print_setting.db_username %></td>
</tr>
<tr>
<th>Db password</th>
<td><%= @print_setting.db_password %></td>
</tr>
<tr>
<th>Printer name</th>
<td><%= @print_setting.printer_name %></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>