2022-02-22 14:27:25 +00:00
|
|
|
= link_to disputes_strike_path(account_warning), class: 'log-entry' do
|
2022-02-14 20:27:53 +00:00
|
|
|
.log-entry__header
|
|
|
|
.log-entry__avatar
|
2022-02-22 14:27:25 +00:00
|
|
|
.indicator-icon{ class: account_warning.overruled? ? 'success' : 'failure' }
|
|
|
|
= fa_icon 'warning'
|
2022-02-14 20:27:53 +00:00
|
|
|
.log-entry__content
|
|
|
|
.log-entry__title
|
2024-01-11 09:32:32 +00:00
|
|
|
= t(account_warning.action,
|
|
|
|
scope: 'admin.strikes.actions',
|
|
|
|
name: content_tag(:span, account_warning.account ? account_warning.account.username : I18n.t('admin.action_logs.deleted_account'), class: 'username'),
|
|
|
|
target: content_tag(:span, account_warning.target_account.pretty_acct, class: 'target')).html_safe
|
2022-02-14 20:27:53 +00:00
|
|
|
.log-entry__timestamp
|
|
|
|
%time.formatted{ datetime: account_warning.created_at.iso8601 }
|
|
|
|
= l(account_warning.created_at)
|
|
|
|
|
|
|
|
- if account_warning.report_id.present?
|
|
|
|
·
|
2022-02-22 14:27:25 +00:00
|
|
|
= t('admin.reports.report', id: account_warning.report_id)
|
2022-02-14 20:27:53 +00:00
|
|
|
|
|
|
|
- if account_warning.overruled?
|
|
|
|
·
|
|
|
|
%span.positive-hint= t('admin.strikes.appeal_approved')
|
|
|
|
- elsif account_warning.appeal&.pending?
|
|
|
|
·
|
|
|
|
%span.warning-hint= t('admin.strikes.appeal_pending')
|
|
|
|
- elsif account_warning.appeal&.rejected?
|
|
|
|
·
|
|
|
|
%span.negative-hint= t('admin.strikes.appeal_rejected')
|