2017-02-15 17:28:10 -08:00
|
|
|
- content_for :page_title do
|
2017-04-13 12:49:07 -07:00
|
|
|
= t('admin.reports.report', id: @report.id)
|
2017-02-16 15:42:52 -08:00
|
|
|
|
|
|
|
.report-accounts
|
|
|
|
.report-accounts__item
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.reports.reported_account')
|
2017-02-16 15:42:52 -08:00
|
|
|
= render partial: 'authorize_follow/card', locals: { account: @report.target_account }
|
|
|
|
.report-accounts__item
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.reports.reported_by')
|
2017-02-16 15:42:52 -08:00
|
|
|
= render partial: 'authorize_follow/card', locals: { account: @report.account }
|
|
|
|
|
|
|
|
%p
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.reports.comment.label')
|
2017-04-12 08:11:49 -07:00
|
|
|
\:
|
2017-04-12 09:24:18 -07:00
|
|
|
= @report.comment.presence || t('reports.comment.none')
|
2017-02-16 15:42:52 -08:00
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
- unless @report.statuses.empty?
|
2017-02-16 15:42:52 -08:00
|
|
|
%hr/
|
|
|
|
|
2017-04-14 02:10:28 -07:00
|
|
|
- @report.statuses.each do |status|
|
2017-02-16 15:42:52 -08:00
|
|
|
.report-status
|
|
|
|
.activity-stream.activity-stream-headless
|
|
|
|
.entry= render partial: 'stream_entries/simple_status', locals: { status: status }
|
|
|
|
.report-status__actions
|
2017-04-14 02:10:28 -07:00
|
|
|
= link_to admin_report_reported_status_path(@report, status), method: :delete, class: 'icon-button', style: 'font-size: 24px; width: 24px; height: 24px', title: t('admin.reports.delete') do
|
2017-02-16 15:42:52 -08:00
|
|
|
= fa_icon 'trash'
|
|
|
|
|
2017-04-03 10:27:30 -07:00
|
|
|
- if !@report.action_taken?
|
2017-02-16 15:42:52 -08:00
|
|
|
%hr/
|
|
|
|
|
|
|
|
%div{ style: 'overflow: hidden' }
|
|
|
|
%div{ style: 'float: right' }
|
2017-04-14 02:10:28 -07:00
|
|
|
= link_to t('admin.reports.silence_account'), admin_report_path(@report, outcome: 'silence'), method: :put, class: 'button'
|
|
|
|
= link_to t('admin.reports.suspend_account'), admin_report_path(@report, outcome: 'suspend'), method: :put, class: 'button'
|
2017-02-16 15:42:52 -08:00
|
|
|
%div{ style: 'float: left' }
|
2017-04-14 02:10:28 -07:00
|
|
|
= link_to t('admin.reports.mark_as_resolved'), admin_report_path(@report, outcome: 'resolve'), method: :put, class: 'button'
|
2017-04-03 10:27:30 -07:00
|
|
|
- elsif !@report.action_taken_by_account.nil?
|
|
|
|
%hr/
|
|
|
|
|
|
|
|
%p
|
|
|
|
%strong Action taken by:
|
|
|
|
= @report.action_taken_by_account.acct
|