Files
sx-fc/app/views/settings/rooms/_form.html.erb
2017-06-19 16:24:44 +06:30

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 %>