2017-02-16 02:28:10 +01:00
|
|
|
- content_for :page_title do
|
2017-04-13 21:49:07 +02:00
|
|
|
= t('admin.reports.report', id: @report.id)
|
2017-02-17 00:42:52 +01:00
|
|
|
|
2020-01-10 01:10:17 +01:00
|
|
|
- content_for :heading_actions do
|
2018-04-10 20:27:59 +02:00
|
|
|
- if @report.unresolved?
|
2019-12-16 23:55:16 +01:00
|
|
|
= link_to t('admin.reports.mark_as_resolved'), resolve_admin_report_path(@report), method: :post, class: 'button'
|
2018-04-02 22:04:14 +02:00
|
|
|
- else
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 20:02:09 +01:00
|
|
|
= link_to t('admin.reports.mark_as_unresolved'), reopen_admin_report_path(@report), method: :post, class: 'button'
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
.report-header
|
2023-10-16 18:07:17 +02:00
|
|
|
= render 'admin/reports/header_card', report: @report
|
|
|
|
= render 'admin/reports/header_details', report: @report
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2018-04-20 02:28:48 +02:00
|
|
|
%hr.spacer
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
%h3= t 'admin.reports.category'
|
2020-04-28 19:39:16 +02:00
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
%p= t 'admin.reports.category_description_html'
|
2019-12-16 23:55:16 +01:00
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
= react_admin_component :report_reason_selector, id: @report.id, category: @report.category, rule_ids: @report.rule_ids&.map(&:to_s), disabled: @report.action_taken?
|
2019-12-16 23:55:16 +01:00
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
- if @report.comment.present?
|
2023-10-16 18:07:17 +02:00
|
|
|
= render 'admin/reports/comment', report: @report
|
2022-01-17 09:41:33 +01:00
|
|
|
|
|
|
|
%hr.spacer/
|
2017-02-17 00:42:52 +01:00
|
|
|
|
2022-02-11 21:51:57 +01:00
|
|
|
%h3
|
|
|
|
= t 'admin.reports.statuses'
|
|
|
|
%small.section-skip-link
|
|
|
|
= link_to '#actions' do
|
|
|
|
= fa_icon 'angle-double-down'
|
|
|
|
= t('admin.reports.skip_to_actions')
|
2022-01-17 09:41:33 +01:00
|
|
|
|
|
|
|
%p
|
|
|
|
= t 'admin.reports.statuses_description_html'
|
|
|
|
—
|
|
|
|
= link_to safe_join([fa_icon('plus'), t('admin.reports.add_to_report')]), admin_account_statuses_path(@report.target_account_id, report_id: @report.id), class: 'table-action-link'
|
|
|
|
|
|
|
|
= form_for(@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([fa_icon('times'), 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?
|
2018-04-20 02:28:48 +02:00
|
|
|
%hr.spacer/
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2023-01-13 11:03:14 +01:00
|
|
|
%p#actions= t(@report.target_account.local? ? 'admin.reports.actions_description_html' : 'admin.reports.actions_description_remote_html')
|
2022-02-11 21:51:57 +01:00
|
|
|
|
2023-10-11 15:58:33 +02:00
|
|
|
= render partial: 'admin/reports/actions', locals: { report: @report, statuses: @statuses }
|
2022-01-17 09:41:33 +01:00
|
|
|
|
|
|
|
- unless @action_logs.empty?
|
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
%h3= t 'admin.reports.action_log'
|
|
|
|
|
|
|
|
.report-notes
|
|
|
|
= render @action_logs
|
2018-04-20 02:28:48 +02:00
|
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
%h3= t 'admin.reports.notes.title'
|
|
|
|
|
|
|
|
%p= t 'admin.reports.notes_description_html'
|
|
|
|
|
|
|
|
.report-notes
|
|
|
|
= render @report_notes
|
2018-04-20 02:28:48 +02:00
|
|
|
|
|
|
|
= simple_form_for @report_note, url: admin_report_notes_path do |f|
|
|
|
|
= f.input :report_id, as: :hidden
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2018-04-20 02:28:48 +02:00
|
|
|
.field-group
|
|
|
|
= f.input :content, placeholder: t('admin.reports.notes.placeholder'), rows: 6
|
2018-04-02 22:04:14 +02:00
|
|
|
|
2018-04-20 02:28:48 +02:00
|
|
|
.actions
|
2018-04-10 20:27:59 +02:00
|
|
|
- if @report.unresolved?
|
2018-04-20 02:28:48 +02:00
|
|
|
= f.button :button, t('admin.reports.notes.create_and_resolve'), name: :create_and_resolve, type: :submit
|
2018-04-10 20:27:59 +02:00
|
|
|
- else
|
2018-04-20 02:28:48 +02:00
|
|
|
= f.button :button, t('admin.reports.notes.create_and_unresolve'), name: :create_and_unresolve, type: :submit
|
|
|
|
= f.button :button, t('admin.reports.notes.create'), type: :submit
|