Display deleted users' role as “Suspended” (#6080)

Deleted users are technically suspended, but the code displaying their status
in the admin interface was broken and displayed a javascript object holding
translations of the possible user roles instead.
This commit is contained in:
ThibG 2017-12-22 02:14:17 +01:00 committed by Eugen Rochko
parent 81d29e4126
commit 6eb60260b1

View file

@ -6,7 +6,10 @@
= link_to account.domain, admin_accounts_path(by_domain: account.domain) = link_to account.domain, admin_accounts_path(by_domain: account.domain)
%td %td
- if account.local? - if account.local?
= t("admin.accounts.roles.#{account.user&.role}") - if account.user.nil?
= t("admin.accounts.moderation.suspended")
- else
= t("admin.accounts.roles.#{account.user.role}")
- else - else
= account.protocol.humanize = account.protocol.humanize
%td %td