35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
|
<%= form_for @application_form_setting, url: update_setting_admin_application_forms_path,method: 'post', html: {class: "form-horizontal main-forms"} do |f| %>
|
||
|
<fieldset>
|
||
|
<% content_for :page_specific_css do %>
|
||
|
<%= stylesheet_link_tag "lib/main-forms" %>
|
||
|
<%= stylesheet_link_tag "lib/fileupload" %>
|
||
|
<%= stylesheet_link_tag "lib/main-list" %>
|
||
|
<% end %>
|
||
|
<% content_for :page_specific_javascript do %>
|
||
|
<%= javascript_include_tag "lib/bootstrap-fileupload" %>
|
||
|
<%= javascript_include_tag "lib/bootstrap-datetimepicker" %>
|
||
|
<%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %>
|
||
|
<%= javascript_include_tag "lib/file-type" %>
|
||
|
<%= javascript_include_tag "lib/module-area" %>
|
||
|
<% end %>
|
||
|
<!-- Input Area -->
|
||
|
<div class="input-area">
|
||
|
<!-- Title-->
|
||
|
<div class="control-group input-title">
|
||
|
<label class="control-label muted"><%= t('application_form.reviewer_length') %></label>
|
||
|
<div class="controls">
|
||
|
<%= f.number_field :reviewer_length, min: 1, class: '' %>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Form Actions -->
|
||
|
<div class="form-actions">
|
||
|
<%= get_referer_url[:application_formion] rescue "" %>
|
||
|
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
||
|
<input type="hidden" name="referer_url" value="<%= get_referer_url %>">
|
||
|
<%= link_to t('cancel'), admin_application_forms_path, :class=>"btn" %>
|
||
|
</div>
|
||
|
|
||
|
</fieldset>
|
||
|
<% end %>
|