11 lines
612 B
Text
11 lines
612 B
Text
= form_for @application_setting, url: reporting_admin_application_settings_path(anchor: 'js-abuse-settings'), html: { class: 'fieldset-form' } do |f|
|
|
= form_errors(@application_setting)
|
|
|
|
%fieldset
|
|
.form-group
|
|
= f.label :abuse_notification_email, 'Abuse reports notification email', class: 'label-bold'
|
|
= f.text_field :abuse_notification_email, class: 'form-control gl-form-input'
|
|
.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.
|
|
|
|
= f.submit 'Save changes', class: "gl-button btn btn-success"
|