41 lines
1.3 KiB
Plaintext
Executable File
41 lines
1.3 KiB
Plaintext
Executable File
<div class="row">
|
|
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8">
|
|
<%= simple_form_for([:settings,@settings_menu]) do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs p-l-15">
|
|
<%= f.input :name %>
|
|
<%= f.input :is_active %>
|
|
<%= f.input :valid_days %>
|
|
<%= f.input :valid_time_to %>
|
|
<%= f.input :valid_time_from %>
|
|
</div>
|
|
|
|
<div class="form-actions 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-4 col-lg-4">
|
|
<div class="card">
|
|
<div class="body">
|
|
<h5><i class="material-icons md-18">view_headline PAGE DETAIL</i></h5>
|
|
<p>
|
|
1) Name - to write menu name <br>
|
|
2) Is active - checkbox for is active or not <br>
|
|
3) Valid days - to write 1 to 7 /Monday to Friday for these menu <br>
|
|
4) Valid Time From - limit time from <br>
|
|
5) Valid Time To - limit time to <br>
|
|
</p>
|
|
<h5><i class="material-icons md-18">list BUTTON LISTS</i> </h5>
|
|
<p>
|
|
1) SUBMIT - to create menu <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>
|
|
|