2018-11-08 19:23:39 +05:30
|
|
|
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
|
2018-05-09 12:01:36 +05:30
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
2018-11-08 19:23:39 +05:30
|
|
|
= f.label :admin_notification_email, 'Abuse reports notification email', class: 'label-light'
|
|
|
|
= 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"
|