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