This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-24 00:44:37 +02:00
|
|
|
%table.table
|
|
|
|
%tbody
|
|
|
|
%tr
|
|
|
|
%td= t('admin.accounts.show.created_reports')
|
|
|
|
%td= link_to pluralize(account.reports.count, t('admin.accounts.show.report')), admin_reports_path(account_id: account.id)
|
|
|
|
%tr
|
|
|
|
%td= t('admin.accounts.show.targeted_reports')
|
|
|
|
%td= link_to pluralize(account.targeted_reports.count, t('admin.accounts.show.report')), admin_reports_path(target_account_id: account.id)
|
2017-05-08 03:35:25 +02:00
|
|
|
- if account.silenced? || account.suspended?
|
2017-04-24 00:44:37 +02:00
|
|
|
%tr
|
|
|
|
%td= t('admin.accounts.moderation.title')
|
|
|
|
%td
|
|
|
|
- if account.silenced?
|
2017-05-07 03:09:58 +02:00
|
|
|
%p= t('admin.accounts.moderation.silenced')
|
2017-04-24 00:44:37 +02:00
|
|
|
- if account.suspended?
|
2017-05-07 03:09:58 +02:00
|
|
|
%p= t('admin.accounts.moderation.suspended')
|