16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
<%= simple_form_for([:settings,@zone,@settings_room]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :name %>
|
|
<%= f.input :status %>
|
|
<%= f.input :seater %>
|
|
<%= f.input :order_by %>
|
|
<%= f.input :is_active %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit %>
|
|
</div>
|
|
<% end %>
|