2017-02-16 01:28:10 +00:00
|
|
|
- content_for :page_title do
|
2017-04-13 19:49:07 +00:00
|
|
|
= t('admin.reports.title')
|
2017-02-16 01:28:10 +00:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
2017-04-13 19:49:07 +00:00
|
|
|
%strong= t('admin.reports.status')
|
2017-02-16 01:28:10 +00:00
|
|
|
%ul
|
2017-04-14 09:10:28 +00:00
|
|
|
%li= filter_link_to t('admin.reports.unresolved'), resolved: nil
|
|
|
|
%li= filter_link_to t('admin.reports.resolved'), resolved: '1'
|
2017-02-16 01:28:10 +00:00
|
|
|
|
2017-04-03 17:17:56 +00:00
|
|
|
= form_tag do
|
|
|
|
|
|
|
|
%table.table
|
|
|
|
%thead
|
2017-02-16 01:28:10 +00:00
|
|
|
%tr
|
2017-04-03 17:17:56 +00:00
|
|
|
%th
|
2017-04-13 19:49:07 +00:00
|
|
|
%th= t('admin.reports.id')
|
|
|
|
%th= t('admin.reports.target')
|
|
|
|
%th= t('admin.reports.reported_by')
|
|
|
|
%th= t('admin.reports.comment.label')
|
2017-04-03 17:17:56 +00:00
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
- @reports.each do |report|
|
|
|
|
%tr
|
|
|
|
%td= check_box_tag 'select', report.id
|
|
|
|
%td= "##{report.id}"
|
|
|
|
%td= link_to report.target_account.acct, admin_account_path(report.target_account.id)
|
|
|
|
%td= link_to report.account.acct, admin_account_path(report.account.id)
|
|
|
|
%td= truncate(report.comment, length: 30, separator: ' ')
|
2017-04-13 19:49:07 +00:00
|
|
|
%td= table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)
|
2017-04-03 17:17:56 +00:00
|
|
|
|
2017-04-10 23:11:41 +00:00
|
|
|
= paginate @reports
|