mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
a9c440637c
* 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
25 lines
599 B
Plaintext
25 lines
599 B
Plaintext
- 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'
|
|
|
|
.table-wrapper
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th= t('admin.reports.id')
|
|
%th= t('admin.reports.target')
|
|
%th= t('admin.reports.reported_by')
|
|
%th= t('admin.reports.report_contents')
|
|
%th= t('admin.reports.assigned')
|
|
%th
|
|
%tbody
|
|
= render @reports
|
|
|
|
= paginate @reports
|