Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_abuse.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91993838fc870fa4ce50896399ca8554f145dd87 (plain)
1
2
3
4
5
6
7
8
9
10
11
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = 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.

  = f.submit 'Save changes', class: "btn btn-success"