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
|
2018-11-18 11:00:15 +05:30
|
|
|
= f.label :admin_notification_email, 'Abuse reports notification email', class: 'label-bold'
|
2018-11-08 19:23:39 +05:30
|
|
|
= f.text_field :admin_notification_email, class: 'form-control'
|
|
|
|
.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
|
|
|
|
|
|
|
= f.submit 'Save changes', class: "btn btn-success"
|