35 lines
1.1 KiB
Plaintext
Executable File
35 lines
1.1 KiB
Plaintext
Executable File
<div class="row">
|
|
<div class="col-xs-12 col-sm-12 col-md-7 col-lg-7">
|
|
<%= simple_form_for([:settings,@settings_zone]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs p-l-15">
|
|
<%= f.input :name %>
|
|
<%= f.input :is_active %>
|
|
<!-- <%= f.input :created_by, :collection => Employee.collection %> -->
|
|
</div>
|
|
|
|
<div class="form-group p-l-15">
|
|
<%= f.submit "Submit",:class => 'btn btn-primary btn-lg waves-effect' %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="col-xs-12 col-sm-12 col-md-5 col-lg-5">
|
|
<div class="card">
|
|
<div class="body">
|
|
<h5><i class="material-icons md-18">view_headline PAGE DETAIL</i></h5>
|
|
<p>
|
|
1) Name - to write zone name <br>
|
|
2) Is active - checkbox for is active or not <br>
|
|
</p>
|
|
<h5><i class="material-icons md-18">list BUTTON LISTS</i> </h5>
|
|
<p>
|
|
1) CREATE ZONE - to create zone <br>
|
|
</p>
|
|
<h5><i class="material-icons md-18">list LINK LISTS</i> </h5>
|
|
<p>1) Home / Back - go to dashboard</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|