2021-06-08 01:23:25 +05:30
|
|
|
- expanded = integration_expanded?('floc_')
|
|
|
|
|
|
|
|
%section.settings.no-animate#js-floc-settings{ class: ('expanded' if expanded) }
|
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= s_('FloC|Federated Learning of Cohorts')
|
|
|
|
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
|
|
|
|
= expanded ? _('Collapse') : _('Expand')
|
|
|
|
%p
|
|
|
|
= s_('FloC|Configure whether you want to participate in FloC.').html_safe
|
2022-03-02 08:16:31 +05:30
|
|
|
= link_to sprite_icon('question-o'), 'https://github.com/WICG/floc', target: '_blank', rel: 'noopener noreferrer', class: 'has-tooltip', title: _('More information')
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
.settings-content
|
2022-06-21 17:19:12 +05:30
|
|
|
= gitlab_ui_form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-floc-settings'), html: { class: 'fieldset-form', id: 'floc-settings' } do |f|
|
2021-06-08 01:23:25 +05:30
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
2022-06-21 17:19:12 +05:30
|
|
|
= f.gitlab_ui_checkbox_component :floc_enabled,
|
|
|
|
s_('FloC|Enable FloC (Federated Learning of Cohorts)')
|
2021-11-11 11:23:49 +05:30
|
|
|
= f.submit _('Save changes'), class: 'gl-button btn btn-confirm'
|