about summary refs log tree commit diff
path: root/app/views/admin/reports/index.html.haml
blob: 7db9af6d16fb35c662c4c5e6159e3542c9bffdc3 (plain) (blame)
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
37
38
39
40
41
42
43
44
- content_for :page_title do
  = t('admin.reports.title')

.filters
  .filter-subset
    %strong= t('admin.reports.status')
    %ul
      %li= filter_link_to t('admin.reports.unresolved'), resolved: nil
      %li= filter_link_to t('admin.reports.resolved'), resolved: '1'

= form_tag do

  %table.table
    %thead
      %tr
        -# %th
        %th= t('admin.reports.id')
        %th= t('admin.reports.target')
        %th= t('admin.reports.reported_by')
        %th= t('admin.reports.comment.label')
        %th= t('admin.reports.report_contents')
        %th
    %tbody
      - @reports.each do |report|
        %tr
          -# %td= check_box_tag 'select', report.id
          %td= "##{report.id}"
          %td= link_to report.target_account.acct, admin_account_path(report.target_account.id)
          %td= link_to report.account.acct, admin_account_path(report.account.id)
          %td
            %span{title: report.comment}
              = truncate(report.comment, length: 30, separator: ' ')
          %td
            - unless report.statuses.empty?
              %span{title: t('admin.accounts.statuses')}
                = fa_icon('comment')
                = report.statuses.count
            - unless report.media_attachments.empty?
              %span{title: t('admin.accounts.media_attachments')}
                = fa_icon('camera')
                = report.media_attachments.count
          %td= table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)

= paginate @reports