mirror of https://github.com/tootsuite/mastodon
100 lines
3.5 KiB
Plaintext
100 lines
3.5 KiB
Plaintext
- content_for :page_title do
|
|
= t('admin.reports.report', id: @report.id)
|
|
|
|
- content_for :heading_actions do
|
|
- if @report.unresolved?
|
|
= link_to t('admin.reports.mark_as_resolved'), resolve_admin_report_path(@report), method: :post, class: 'button'
|
|
- else
|
|
= link_to t('admin.reports.mark_as_unresolved'), reopen_admin_report_path(@report), method: :post, class: 'button'
|
|
|
|
- unless @report.account.local? || @report.target_account.local?
|
|
.flash-message= t('admin.reports.forwarded_replies_explanation')
|
|
|
|
.report-header
|
|
= render 'admin/reports/header_card', report: @report
|
|
= render 'admin/reports/header_details', report: @report
|
|
|
|
%hr.spacer
|
|
|
|
%h3= t 'admin.reports.category'
|
|
|
|
%p= t 'admin.reports.category_description_html'
|
|
|
|
= react_admin_component :report_reason_selector,
|
|
category: @report.category,
|
|
disabled: @report.action_taken?,
|
|
id: @report.id,
|
|
rule_ids: @report.rule_ids&.map(&:to_s)
|
|
|
|
- if @report.comment.present?
|
|
= render 'admin/reports/comment', report: @report
|
|
|
|
%hr.spacer/
|
|
|
|
%h3
|
|
= t 'admin.reports.statuses'
|
|
%small.section-skip-link
|
|
= link_to '#actions' do
|
|
= material_symbol 'keyboard_double_arrow_down'
|
|
= t('admin.reports.skip_to_actions')
|
|
|
|
%p
|
|
= t 'admin.reports.statuses_description_html'
|
|
—
|
|
= link_to safe_join([material_symbol('add'), t('admin.reports.add_to_report')]),
|
|
admin_account_statuses_path(@report.target_account_id, report_id: @report.id),
|
|
class: 'table-action-link'
|
|
|
|
= form_with model: @form, url: batch_admin_account_statuses_path(@report.target_account_id, report_id: @report.id) do |f|
|
|
.batch-table
|
|
.batch-table__toolbar
|
|
%label.batch-table__toolbar__select.batch-checkbox-all
|
|
= check_box_tag :batch_checkbox_all, nil, false
|
|
.batch-table__toolbar__actions
|
|
- if !@statuses.empty? && @report.unresolved?
|
|
= f.button safe_join([material_symbol('close'), t('admin.statuses.batch.remove_from_report')]), name: :remove_from_report, class: 'table-action-link', type: :submit
|
|
.batch-table__body
|
|
- if @statuses.empty?
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
- else
|
|
= render partial: 'admin/reports/status', collection: @statuses, locals: { f: f }
|
|
|
|
- if @report.unresolved?
|
|
%hr.spacer/
|
|
|
|
%p#actions= t(@report.target_account.local? ? 'admin.reports.actions_description_html' : 'admin.reports.actions_description_remote_html')
|
|
|
|
= render partial: 'admin/reports/actions', locals: { report: @report, statuses: @statuses }
|
|
|
|
- unless @action_logs.empty?
|
|
%hr.spacer/
|
|
|
|
%h3= t 'admin.reports.action_log'
|
|
|
|
.report-notes
|
|
= render @action_logs
|
|
|
|
%hr.spacer/
|
|
|
|
%h3= t 'admin.reports.notes.title'
|
|
|
|
%p= t 'admin.reports.notes_description_html'
|
|
|
|
.report-notes
|
|
= render @report_notes
|
|
|
|
= simple_form_for @report_note, url: admin_report_notes_path do |form|
|
|
= form.input :report_id, as: :hidden
|
|
|
|
= render 'shared/error_messages', object: @report_note
|
|
|
|
.field-group
|
|
= form.input :content, input_html: { placeholder: t('admin.reports.notes.placeholder'), maxlength: ReportNote::CONTENT_SIZE_LIMIT, rows: 6, autofocus: @report_note.errors.any? }
|
|
|
|
.actions
|
|
- if @report.unresolved?
|
|
= form.button :button, t('admin.reports.notes.create_and_resolve'), name: :create_and_resolve, type: :submit
|
|
- else
|
|
= form.button :button, t('admin.reports.notes.create_and_unresolve'), name: :create_and_unresolve, type: :submit
|
|
= form.button :button, t('admin.reports.notes.create'), type: :submit
|