Improve report layout (#7188)
* Use table for statuses in report * Display reported account and reporter in the same table * Split accounts and general report info into two tables again * Redesign report statuses table, notes, merge notes and action log * Remove unused translations * Fix code style issue * Fix code style issue * Fix code style issue
This commit is contained in:
@ -2,9 +2,9 @@
|
||||
%td.id
|
||||
= "##{report.id}"
|
||||
%td.target
|
||||
= link_to report.target_account.acct, admin_account_path(report.target_account.id)
|
||||
= admin_account_link_to report.target_account
|
||||
%td.reporter
|
||||
= link_to report.account.acct, admin_account_path(report.account.id)
|
||||
= admin_account_link_to report.account
|
||||
%td
|
||||
%div{ title: report.comment }
|
||||
= truncate(report.comment, length: 30, separator: ' ')
|
||||
@ -21,6 +21,6 @@
|
||||
- if report.assigned_account.nil?
|
||||
\-
|
||||
- else
|
||||
= link_to report.assigned_account.acct, admin_account_path(report.assigned_account.id)
|
||||
= admin_account_link_to report.assigned_account
|
||||
%td
|
||||
= table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)
|
||||
|
Reference in New Issue
Block a user