Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_realtime.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66003f3110454335081d358409b1fec8bc225410 (plain)
1
2
3
4
5
6
7
8
9
10
11
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-realtime-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting, pajamas_alert: true)

  %fieldset
    .form-group
      = f.label :polling_interval_multiplier, _('Polling interval multiplier'), class: 'label-bold'
      = f.text_field :polling_interval_multiplier, class: 'form-control gl-form-input'
      .form-text.text-muted
        = _('Multiplier to apply to polling intervals. Decimal values are supported. Defaults to 1.')

  = f.submit _('Save changes'), class: "gl-button btn btn-confirm"