debian-mirror-gitlab/app/views/admin/application_settings/reporting.html.haml

30 lines
1.2 KiB
Text
Raw Normal View History

2018-12-05 23:21:45 +05:30
- breadcrumb_title _("Reporting")
- page_title _("Reporting")
- @content_class = "limit-container-width" unless fluid_layout
%section.settings.as-spam.no-animate#js-spam-settings{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
= _('Spam and Anti-bot Protection')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2018-12-05 23:21:45 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
2021-11-18 22:05:49 +05:30
= _('Configure CAPTCHAs, IP address limits, and other anti-spam measures.')
2018-12-05 23:21:45 +05:30
.settings-content
= render 'spam'
2021-12-11 22:18:48 +05:30
-# this partial is from JiHu, see details in https://gitlab.com/gitlab-jh/gitlab/-/merge_requests/135
= render_if_exists 'admin/application_settings/content_validation_section'
2018-12-05 23:21:45 +05:30
%section.settings.as-abuse.no-animate#js-abuse-settings{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
= _('Abuse reports')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2018-12-05 23:21:45 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
2021-11-18 22:05:49 +05:30
= _('Receive notification of abuse reports by email.')
= link_to _('Learn more.'), help_page_path('user/admin_area/review_abuse_reports.md'), target: '_blank', rel: 'noopener noreferrer'
2018-12-05 23:21:45 +05:30
.settings-content
= render 'abuse'