2019-02-20 11:56:19 -05:00
|
|
|
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-realtime-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-04-04 05:44:32 -04:00
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
2018-06-13 03:40:55 -04:00
|
|
|
.form-group
|
2021-04-01 08:08:56 -04:00
|
|
|
= f.label :polling_interval_multiplier, _('Polling interval multiplier'), class: 'label-bold'
|
2021-01-31 13:09:51 -05:00
|
|
|
= f.text_field :polling_interval_multiplier, class: 'form-control gl-form-input'
|
2018-06-13 03:40:55 -04:00
|
|
|
.form-text.text-muted
|
2021-07-20 05:08:43 -04:00
|
|
|
= _('Multiplier to apply to polling intervals. Decimal values are supported. Defaults to 1.')
|
2018-04-04 05:44:32 -04:00
|
|
|
|
2021-04-01 08:08:56 -04:00
|
|
|
= f.submit _('Save changes'), class: "gl-button btn btn-confirm"
|