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: fab3ce584f0886e8ca32dacb64439dcf40efc90c (plain)
1
2
3
4
5
6
7
8
9
10
11
= 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-confirm"