2020-12-14 08:06:34 +00:00
|
|
|
.directory__tag
|
|
|
|
= link_to admin_instance_path(instance) do
|
|
|
|
%h4
|
2022-03-22 17:41:46 +00:00
|
|
|
= fa_icon 'warning fw', title: t('admin.instances.availability.warning') if instance.failing?
|
2020-12-14 08:06:34 +00:00
|
|
|
= instance.domain
|
2022-03-09 07:52:32 +00:00
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
%small
|
|
|
|
- if instance.domain_block
|
2022-03-09 07:52:32 +00:00
|
|
|
= instance.domain_block.policies.map { |policy| t(policy, scope: 'admin.instances.content_policies.policies') }.join(' • ')
|
|
|
|
- elsif instance.domain_allow
|
2020-12-14 08:06:34 +00:00
|
|
|
= t('admin.accounts.whitelisted')
|
|
|
|
- else
|
|
|
|
= t('admin.accounts.no_limits_imposed')
|
2022-03-09 07:52:32 +00:00
|
|
|
|
2021-07-07 19:13:08 +00:00
|
|
|
.trends__item__current{ title: t('admin.instances.known_accounts', count: instance.accounts_count) }= friendly_number_to_human instance.accounts_count
|