2017-05-02 20:56:28 +02:00
|
|
|
%tr
|
|
|
|
%td.id
|
|
|
|
= "##{report.id}"
|
|
|
|
%td.target
|
2018-04-20 02:28:48 +02:00
|
|
|
= admin_account_link_to report.target_account
|
2017-05-02 20:56:28 +02:00
|
|
|
%td.reporter
|
2018-05-04 13:26:25 +02:00
|
|
|
- if report.account.local?
|
|
|
|
= admin_account_link_to report.account
|
|
|
|
- else
|
|
|
|
= report.account.domain
|
2018-04-19 15:39:54 +02:00
|
|
|
%td
|
|
|
|
%div{ title: report.comment }
|
2017-05-02 20:56:28 +02:00
|
|
|
= truncate(report.comment, length: 30, separator: ' ')
|
2018-04-19 15:39:54 +02:00
|
|
|
%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
|
2018-04-02 22:04:14 +02:00
|
|
|
%td
|
|
|
|
- if report.assigned_account.nil?
|
|
|
|
\-
|
|
|
|
- else
|
2018-04-20 02:28:48 +02:00
|
|
|
= admin_account_link_to report.assigned_account
|
2017-05-02 20:56:28 +02:00
|
|
|
%td
|
|
|
|
= table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)
|