mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
64 lines
2.6 KiB
Plaintext
64 lines
2.6 KiB
Plaintext
- target_acct = @report.target_account.acct
|
|
- warning_action = { 'delete' => 'delete_statuses', 'mark_as_sensitive' => 'mark_statuses_as_sensitive' }.fetch(@moderation_action, @moderation_action)
|
|
|
|
- content_for :page_title do
|
|
= t('admin.reports.confirm_action', acct: target_acct)
|
|
|
|
= form_with url: admin_report_actions_path(@report), class: :simple_form do |form|
|
|
= form.hidden_field :moderation_action, value: @moderation_action
|
|
|
|
%p.hint= t("admin.reports.summary.action_preambles.#{@moderation_action}_html", acct: target_acct)
|
|
%ul.hint
|
|
%li.warning-hint= t("admin.reports.summary.actions.#{@moderation_action}_html", acct: target_acct)
|
|
- if @moderation_action == 'suspend'
|
|
%li.warning-hint= t('admin.reports.summary.delete_data_html', acct: target_acct)
|
|
- if %w(silence suspend).include?(@moderation_action)
|
|
%li.warning-hint= t('admin.reports.summary.close_reports_html', acct: target_acct)
|
|
- else
|
|
%li= t('admin.reports.summary.close_report', id: @report.id)
|
|
%li= t('admin.reports.summary.record_strike_html', acct: target_acct)
|
|
- if @report.target_account.local? && !@report.spam?
|
|
%li= t('admin.reports.summary.send_email_html', acct: target_acct)
|
|
|
|
%hr.spacer/
|
|
|
|
- if @report.target_account.local?
|
|
%p.hint= t('admin.reports.summary.preview_preamble_html', acct: target_acct)
|
|
|
|
.strike-card
|
|
- unless warning_action == 'none'
|
|
%p= t "user_mailer.warning.explanation.#{warning_action}", instance: Rails.configuration.x.local_domain
|
|
|
|
.fields-group
|
|
= form.text_area :text,
|
|
value: nil,
|
|
placeholder: t('admin.reports.summary.warning_placeholder')
|
|
|
|
- unless @report.other?
|
|
%p
|
|
%strong= t('user_mailer.warning.reason')
|
|
= t("user_mailer.warning.categories.#{@report.category}")
|
|
|
|
- if @report.violation? && @report.rule_ids.present?
|
|
%ul.strike-card__rules
|
|
- @report.rules.each do |rule|
|
|
%li
|
|
%span.strike-card__rules__text= rule.text
|
|
|
|
- if @report.status_ids.present? && !@report.status_ids.empty?
|
|
%p
|
|
%strong= t('user_mailer.warning.statuses')
|
|
|
|
.strike-card__statuses-list
|
|
= render partial: 'status', collection: @statuses
|
|
= render partial: 'deleted_status', collection: @report.deleted_status_ids, as: :status_id
|
|
|
|
%hr.spacer/
|
|
|
|
.actions
|
|
= link_to t('admin.reports.cancel'), admin_report_path(@report), class: 'button button-tertiary'
|
|
= form.button t('admin.reports.confirm'),
|
|
name: :confirm,
|
|
class: 'button',
|
|
type: :submit
|