about summary refs log tree commit diff
path: root/app/views/admin/reports/_report.html.haml
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-09-21 08:39:07 +0200
committerGitHub <noreply@github.com>2018-09-21 08:39:07 +0200
commit17464c10ad1693095a05fe445587804589d627e1 (patch)
treeecd2a077b038b864ac7912cba72dd59990fb6258 /app/views/admin/reports/_report.html.haml
parent382cdd7f959480d59fee5646be320d6076cb18d8 (diff)
parent343acd96cccb16b1ecdc3a52a8733359d4a92633 (diff)
Merge pull request #739 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/views/admin/reports/_report.html.haml')
-rw-r--r--app/views/admin/reports/_report.html.haml29
1 files changed, 0 insertions, 29 deletions
diff --git a/app/views/admin/reports/_report.html.haml b/app/views/admin/reports/_report.html.haml
deleted file mode 100644
index 7b25c924b..000000000
--- a/app/views/admin/reports/_report.html.haml
+++ /dev/null
@@ -1,29 +0,0 @@
-%tr
-  %td.id
-    = "##{report.id}"
-  %td.target
-    = admin_account_link_to report.target_account
-  %td.reporter
-    - if report.account.local?
-      = admin_account_link_to report.account
-    - else
-      = report.account.domain
-  %td
-    %div{ title: report.comment }
-      = truncate(report.comment, length: 30, separator: ' ')
-    %div
-      - 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
-    - if report.assigned_account.nil?
-      \-
-    - else
-      = admin_account_link_to report.assigned_account
-  %td
-    = table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)