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-08-17 17:52:40 +02:00
|
|
|
%td.protocol
|
|
|
|
- unless account.local?
|
2017-08-17 23:20:50 +02:00
|
|
|
= account.protocol.humanize
|
2017-05-02 20:56:28 +02:00
|
|
|
%td.confirmed
|
|
|
|
- if account.local?
|
|
|
|
- if account.user_confirmed?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
|
|
|
%td.subscribed
|
|
|
|
- if account.local?
|
|
|
|
= t('admin.accounts.location.local')
|
|
|
|
- elsif account.subscribed?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
|
|
|
%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)
|