_card.html.haml 718 B

12345678910111213141516
  1. %table.table
  2. %tbody
  3. %tr
  4. %td= t('admin.accounts.show.created_reports')
  5. %td= link_to pluralize(account.reports.count, t('admin.accounts.show.report')), admin_reports_path(account_id: account.id)
  6. %tr
  7. %td= t('admin.accounts.show.targeted_reports')
  8. %td= link_to pluralize(account.targeted_reports.count, t('admin.accounts.show.report')), admin_reports_path(target_account_id: account.id)
  9. - if account.silenced? || account.suspended?
  10. %tr
  11. %td= t('admin.accounts.moderation.title')
  12. %td
  13. - if account.silenced?
  14. %p= t('admin.accounts.moderation.silenced')
  15. - if account.suspended?
  16. %p= t('admin.accounts.moderation.suspended')