gitlab-org--gitlab-foss/app/views/abuse_reports/new.html.haml

27 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-11-07 11:24:36 +00:00
- page_title _("Report abuse to GitLab")
%h3.page-title
= _("Report abuse to GitLab")
2018-11-07 11:24:36 +00:00
%p
= _("Please use this form to report users to GitLab who create spam issues, comments or behave inappropriately.")
2018-11-07 11:24:36 +00:00
%p
= _("A member of GitLab's abuse team will review your report as soon as possible.")
%hr
= form_for @abuse_report, html: { class: 'js-quick-submit js-requires-input'} do |f|
= form_errors(@abuse_report)
= f.hidden_field :user_id
.form-group.row
= f.label :user_id, class: 'col-sm-2 col-form-label'
.col-sm-10
- name = "#{@abuse_report.user.name} (@#{@abuse_report.user.username})"
= text_field_tag :user_name, name, class: "form-control", readonly: true
.form-group.row
= f.label :message, class: 'col-sm-2 col-form-label'
.col-sm-10
= f.text_area :message, class: "form-control", rows: 2, required: true, value: sanitize(@ref_url)
.form-text.text-muted
= _("Explain the problem. If appropriate, provide a link to the relevant issue or comment.")
.form-actions
= f.submit _("Send report"), class: "btn btn-success"