2019-02-20 11:56:19 -05:00
|
|
|
= form_for @application_setting, url: reporting_admin_application_settings_path(anchor: 'js-abuse-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-03-30 04:26:04 -04:00
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
2018-06-13 03:40:55 -04:00
|
|
|
.form-group
|
2021-04-21 11:09:35 -04:00
|
|
|
= f.label :abuse_notification_email, _('Abuse reports notification email'), class: 'label-bold'
|
2021-01-31 13:09:51 -05:00
|
|
|
= f.text_field :abuse_notification_email, class: 'form-control gl-form-input'
|
2018-03-30 04:26:04 -04:00
|
|
|
|
2021-04-21 11:09:35 -04:00
|
|
|
= f.submit _('Save changes'), class: "gl-button btn btn-confirm"
|