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

index.html.haml « abuse_reports « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01128c4ac8db32c8e45eeac33b51cd78f6cae92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- page_title _('Abuse Reports')
%h3.page-title= _('Abuse Reports')
%hr
.abuse-reports
  - if @abuse_reports.present?
    .table-holder
      %table.table.responsive-table
        %thead.d-none.d-sm-none.d-md-table-header-group
          %tr
            %th= _('User')
            %th= _('Reported by')
            %th.wide= _('Message')
            %th= _('Action')
        = render @abuse_reports
    = paginate @abuse_reports, theme: 'gitlab'
  - else
    .empty-state
      .text-center
        %h4
          = _('There are no abuse reports!')
          = emoji_icon('tada')