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-05-02 20:56:28 +02:00
|
|
|
%tr
|
|
|
|
%td.username
|
|
|
|
= account.username
|
|
|
|
%td.domain
|
|
|
|
- unless account.local?
|
|
|
|
= link_to account.domain, admin_accounts_path(by_domain: account.domain)
|
2017-12-13 12:15:10 +01:00
|
|
|
%td
|
2017-05-02 20:56:28 +02:00
|
|
|
- if account.local?
|
2017-12-22 02:14:17 +01:00
|
|
|
- if account.user.nil?
|
|
|
|
= t("admin.accounts.moderation.suspended")
|
|
|
|
- else
|
|
|
|
= t("admin.accounts.roles.#{account.user.role}")
|
2017-05-02 20:56:28 +02:00
|
|
|
- else
|
2017-12-13 12:15:10 +01:00
|
|
|
= account.protocol.humanize
|
2017-05-02 20:56:28 +02:00
|
|
|
%td
|
|
|
|
= table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}")
|
|
|
|
= table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account)
|
|
|
|
= table_link_to 'pencil', t('admin.accounts.edit'), admin_account_path(account.id)
|