|
|
@ -1,4 +1,4 @@
|
|
|
|
= form_tag preview_admin_report_actions_path(report), method: :post do
|
|
|
|
= form_with url: preview_admin_report_actions_path(report) do |form|
|
|
|
|
.report-actions
|
|
|
|
.report-actions
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
@ -8,26 +8,36 @@
|
|
|
|
- if statuses.any? { |status| (status.with_media? || status.with_preview_card?) && !status.discarded? }
|
|
|
|
- if statuses.any? { |status| (status.with_media? || status.with_preview_card?) && !status.discarded? }
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
|
= button_tag t('admin.reports.mark_as_sensitive'), name: :mark_as_sensitive, class: 'button'
|
|
|
|
= form.button t('admin.reports.mark_as_sensitive'),
|
|
|
|
|
|
|
|
name: :mark_as_sensitive,
|
|
|
|
|
|
|
|
class: 'button'
|
|
|
|
.report-actions__item__description
|
|
|
|
.report-actions__item__description
|
|
|
|
= t('admin.reports.actions.mark_as_sensitive_description_html')
|
|
|
|
= t('admin.reports.actions.mark_as_sensitive_description_html')
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
|
= button_tag t('admin.reports.delete_and_resolve'), name: :delete, class: 'button button--destructive'
|
|
|
|
= form.button t('admin.reports.delete_and_resolve'),
|
|
|
|
|
|
|
|
name: :delete,
|
|
|
|
|
|
|
|
class: 'button button--destructive'
|
|
|
|
.report-actions__item__description
|
|
|
|
.report-actions__item__description
|
|
|
|
= t('admin.reports.actions.delete_description_html')
|
|
|
|
= t('admin.reports.actions.delete_description_html')
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
|
= button_tag t('admin.accounts.silence'), name: :silence, class: 'button button--destructive'
|
|
|
|
= form.button t('admin.accounts.silence'),
|
|
|
|
|
|
|
|
name: :silence,
|
|
|
|
|
|
|
|
class: 'button button--destructive'
|
|
|
|
.report-actions__item__description
|
|
|
|
.report-actions__item__description
|
|
|
|
= t('admin.reports.actions.silence_description_html')
|
|
|
|
= t('admin.reports.actions.silence_description_html')
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
|
= button_tag t('admin.accounts.suspend'), name: :suspend, class: 'button button--destructive'
|
|
|
|
= form.button t('admin.accounts.suspend'),
|
|
|
|
|
|
|
|
name: :suspend,
|
|
|
|
|
|
|
|
class: 'button button--destructive'
|
|
|
|
.report-actions__item__description
|
|
|
|
.report-actions__item__description
|
|
|
|
= t('admin.reports.actions.suspend_description_html')
|
|
|
|
= t('admin.reports.actions.suspend_description_html')
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item
|
|
|
|
.report-actions__item__button
|
|
|
|
.report-actions__item__button
|
|
|
|
= link_to t('admin.accounts.custom'), new_admin_account_action_path(report.target_account_id, report_id: report.id), class: 'button'
|
|
|
|
= link_to t('admin.accounts.custom'),
|
|
|
|
|
|
|
|
new_admin_account_action_path(report.target_account_id, report_id: report.id),
|
|
|
|
|
|
|
|
class: 'button'
|
|
|
|
.report-actions__item__description
|
|
|
|
.report-actions__item__description
|
|
|
|
= t('admin.reports.actions.other_description_html')
|
|
|
|
= t('admin.reports.actions.other_description_html')
|
|
|
|