summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_snowplow.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/application_settings/_snowplow.html.haml')
-rw-r--r--app/views/admin/application_settings/_snowplow.html.haml43
1 files changed, 43 insertions, 0 deletions
diff --git a/app/views/admin/application_settings/_snowplow.html.haml b/app/views/admin/application_settings/_snowplow.html.haml
new file mode 100644
index 00000000000..7d640aadd99
--- /dev/null
+++ b/app/views/admin/application_settings/_snowplow.html.haml
@@ -0,0 +1,43 @@
+%section.settings.as-third-party-offers.no-animate#js-third-party-offers-settings{ class: ('expanded' if expanded_by_default?) }
+ .settings-header
+ %h4
+ = _('Third party offers')
+ %button.btn.btn-default.js-settings-toggle{ type: 'button' }
+ = expanded_by_default? ? _('Collapse') : _('Expand')
+ %p
+ = _('Control the display of third party offers.')
+ .settings-content
+ = render 'third_party_offers', application_setting: @application_setting
+
+%section.settings.as-snowplow.no-animate#js-snowplow-settings{ class: ('expanded' if expanded) }
+ .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
+
+ = form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
+ = form_errors(@application_setting)
+
+ %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'