Commit 9ad19c53 authored by Nick Thomas's avatar Nick Thomas

Merge branch '7867-snowplow-integration-settings-are-rendered-incorrectly' into 'master'

Resolve "Snowplow integration settings are rendered incorrectly"

Closes #7867

See merge request gitlab-org/gitlab-ee!7798
parents 8834fec1 2b8b54dd
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f| %section.settings.as-snowplow.no-animate#js-snowplow-settings{ class: ('expanded' if expanded) }
= form_errors(@application_setting) .settings-header
%h4
Snowplow
%button.btn.btn-default.js-settings-toggle{ type: 'button' }
= expanded ? _('Collapse') : _('Expand')
%p
= _('Configure the %{link} integration.').html_safe % { link: link_to('Snowplow', 'https://snowplowanalytics.com/', target: '_blank') }
.settings-content
%fieldset = form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
.form-group = form_errors(@application_setting)
.form-check
= f.check_box :snowplow_enabled, class: 'form-check-input'
= f.label :snowplow_enabled, class: 'form-check-label' do
Enable Snowplow
.form-group
= f.label :snowplow_collector_uri, 'Collector URI', class: 'label-light'
= f.text_field :snowplow_collector_uri, class: 'form-control', placeholder: 'snowplow.example.com'
.form-group
= f.label :snowplow_site_id, class: 'label-light' do
Site ID
= f.text_field :snowplow_site_id, class: 'form-control'
.form-group
= f.label :snowplow_cookie_domain, class: 'label-light' do
Cookie domain
= f.text_field :snowplow_cookie_domain, class: 'form-control'
= f.submit 'Save changes', class: 'btn btn-success' %fieldset
.form-group
.form-check
= f.check_box :snowplow_enabled, class: 'form-check-input'
= f.label :snowplow_enabled, class: 'form-check-label' do
Enable Snowplow
.form-group
= f.label :snowplow_collector_uri, 'Collector URI', class: 'label-light'
= f.text_field :snowplow_collector_uri, class: 'form-control', placeholder: 'snowplow.example.com'
.form-group
= f.label :snowplow_site_id, class: 'label-light' do
Site ID
= f.text_field :snowplow_site_id, class: 'form-control'
.form-group
= f.label :snowplow_cookie_domain, class: 'label-light' do
Cookie domain
= f.text_field :snowplow_cookie_domain, class: 'form-control'
= f.submit 'Save changes', class: 'btn btn-success'
---
title: Adds expandable/collapsable section for Snowplow
merge_request: 7798
author:
type: other
...@@ -2101,6 +2101,9 @@ msgstr "" ...@@ -2101,6 +2101,9 @@ msgstr ""
msgid "Configure storage path and circuit breaker settings." msgid "Configure storage path and circuit breaker settings."
msgstr "" msgstr ""
msgid "Configure the %{link} integration."
msgstr ""
msgid "Configure the way a user creates a new account." msgid "Configure the way a user creates a new account."
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment