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: fee3a846849ba4a142a4a125b97ef8a8a10b8814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
- page_title _('Abuse Reports')

%h1.page-title.gl-font-size-h-display= _('Abuse Reports')

- if Feature.enabled?(:abuse_reports_list)
  #js-abuse-reports-list-app{ data: abuse_reports_list_data(@abuse_reports) }
    = gl_loading_icon(css_class: 'gl-my-5', size: 'md')
- else
  .row-content-block.second-block
    = form_tag admin_abuse_reports_path, method: :get, class: 'filter-form' do
      .filter-categories.flex-fill
        .filter-item.inline
          = dropdown_tag(user_dropdown_label(params[:user_id], 'User'),
            options: { toggle_class: 'js-filter-submit js-user-search',
            title: _('Filter by user'), filter: true, filterInput: 'input#user-search',
            dropdown_class: 'dropdown-menu-selectable dropdown-menu-user js-filter-submit',
            placeholder: _('Search users'),
            data: { current_user: true, field_name: 'user_id' }})

  .abuse-reports
    - if @abuse_reports.present?
      .table-holder
        %table.table.responsive-table
          %thead.d-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!")
          %h3= emoji_icon('tada')