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:
Eugen Rochko
2018-04-20 02:28:48 +02:00
committed by GitHub
parent 1663368724
commit a9c440637c
55 changed files with 380 additions and 249 deletions

View File

@ -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)