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

12 lines
612 B
Text
Raw Normal View History

2019-09-30 21:07:59 +05:30
= form_for @application_setting, url: reporting_admin_application_settings_path(anchor: 'js-abuse-settings'), html: { class: 'fieldset-form' } do |f|
2018-05-09 12:01:36 +05:30
= form_errors(@application_setting)
%fieldset
.form-group
2021-01-03 14:25:43 +05:30
= f.label :abuse_notification_email, 'Abuse reports notification email', class: 'label-bold'
2021-03-11 19:13:27 +05:30
= f.text_field :abuse_notification_email, class: 'form-control gl-form-input'
2018-11-08 19:23:39 +05:30
.form-text.text-muted
Abuse reports will be sent to this address if it is set. Abuse reports are always available in the admin area.
2018-05-09 12:01:36 +05:30
2021-04-17 20:07:23 +05:30
= f.submit 'Save changes', class: "gl-button btn btn-confirm"