You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
883 B

  1. %tr
  2. %td.id
  3. = "##{report.id}"
  4. %td.target
  5. = admin_account_link_to report.target_account
  6. %td.reporter
  7. - if report.account.local?
  8. = admin_account_link_to report.account
  9. - else
  10. = report.account.domain
  11. %td
  12. %div{ title: report.comment }
  13. = truncate(report.comment, length: 30, separator: ' ')
  14. %div
  15. - unless report.statuses.empty?
  16. %span{ title: t('admin.accounts.statuses') }
  17. = fa_icon('comment')
  18. = report.statuses.count
  19. - unless report.media_attachments.empty?
  20. %span{ title: t('admin.accounts.media_attachments') }
  21. = fa_icon('camera')
  22. = report.media_attachments.count
  23. %td
  24. - if report.assigned_account.nil?
  25. \-
  26. - else
  27. = admin_account_link_to report.assigned_account
  28. %td
  29. = table_link_to 'circle', t('admin.reports.view'), admin_report_path(report)