This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-23 15:44:37 -07: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-07 18:35:25 -07:00
|
|
|
- if account.silenced? || account.suspended?
|
2017-04-23 15:44:37 -07:00
|
|
|
%tr
|
|
|
|
%td= t('admin.accounts.moderation.title')
|
|
|
|
%td
|
|
|
|
- if account.silenced?
|
2017-05-06 18:09:58 -07:00
|
|
|
%p= t('admin.accounts.moderation.silenced')
|
2017-04-23 15:44:37 -07:00
|
|
|
- if account.suspended?
|
2017-05-06 18:09:58 -07:00
|
|
|
%p= t('admin.accounts.moderation.suspended')
|