23 lines
559 B
Plaintext
23 lines
559 B
Plaintext
<%= simple_form_for(@print_setting) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :name %>
|
|
<%= f.input :unique_code %>
|
|
<%= f.input :template %>
|
|
<%= f.input :db_name %>
|
|
<%= f.input :db_type %>
|
|
<%= f.input :db_username %>
|
|
<%= f.input :db_password %>
|
|
<%= f.input :printer_name %>
|
|
<%= f.input :api_settings %>
|
|
<%= f.input :page_width %>
|
|
<%= f.input :page_height %>
|
|
<%= f.input :print_copies %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|