2019-01-08 12:39:49 +00:00
|
|
|
- content_for :page_title do
|
|
|
|
= @instance.domain
|
|
|
|
|
|
|
|
.dashboard__counters
|
2020-12-14 08:06:34 +00:00
|
|
|
%div
|
|
|
|
= link_to admin_accounts_path(remote: '1', by_domain: @instance.domain) do
|
|
|
|
.dashboard__counters__num= number_with_delimiter @instance.accounts_count
|
|
|
|
.dashboard__counters__label= t 'admin.accounts.title'
|
|
|
|
%div
|
|
|
|
= link_to admin_reports_path(by_target_domain: @instance.domain) do
|
|
|
|
.dashboard__counters__num= number_with_delimiter @instance.reports_count
|
|
|
|
.dashboard__counters__label= t 'admin.instances.total_reported'
|
2019-01-08 12:39:49 +00:00
|
|
|
%div
|
|
|
|
%div
|
2020-12-14 08:06:34 +00:00
|
|
|
.dashboard__counters__num= number_to_human_size @instance.media_storage
|
|
|
|
.dashboard__counters__label= t 'admin.instances.total_storage'
|
2019-01-08 12:39:49 +00:00
|
|
|
%div
|
|
|
|
%div
|
2020-12-14 08:06:34 +00:00
|
|
|
.dashboard__counters__num= number_with_delimiter @instance.following_count
|
|
|
|
.dashboard__counters__label= t 'admin.instances.total_followed_by_them'
|
2019-01-08 12:39:49 +00:00
|
|
|
%div
|
|
|
|
%div
|
2020-12-14 08:06:34 +00:00
|
|
|
.dashboard__counters__num= number_with_delimiter @instance.followers_count
|
|
|
|
.dashboard__counters__label= t 'admin.instances.total_followed_by_us'
|
2019-01-08 12:39:49 +00:00
|
|
|
%div
|
|
|
|
%div
|
2020-12-14 08:06:34 +00:00
|
|
|
.dashboard__counters__num= number_with_delimiter @instance.blocks_count
|
2019-01-08 12:39:49 +00:00
|
|
|
.dashboard__counters__label= t 'admin.instances.total_blocked_by_us'
|
2020-12-14 08:06:34 +00:00
|
|
|
|
2019-01-08 12:39:49 +00:00
|
|
|
%div
|
|
|
|
%div
|
|
|
|
.dashboard__counters__num
|
2020-12-14 08:06:34 +00:00
|
|
|
- if @instance.delivery_failure_tracker.available?
|
2019-01-08 12:39:49 +00:00
|
|
|
= fa_icon 'check'
|
|
|
|
- else
|
|
|
|
= fa_icon 'times'
|
|
|
|
.dashboard__counters__label= t 'admin.instances.delivery_available'
|
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
- if @instance.private_comment.present?
|
2019-08-07 18:20:23 +00:00
|
|
|
.speech-bubble
|
|
|
|
.speech-bubble__bubble
|
2020-12-14 08:06:34 +00:00
|
|
|
= simple_format(h(@instance.private_comment))
|
2019-08-07 18:20:23 +00:00
|
|
|
.speech-bubble__owner= t 'admin.instances.private_comment'
|
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
- if @instance.public_comment.present?
|
2019-08-07 18:20:23 +00:00
|
|
|
.speech-bubble
|
|
|
|
.speech-bubble__bubble
|
2020-12-14 08:06:34 +00:00
|
|
|
= simple_format(h(@instance.public_comment))
|
2019-08-07 18:20:23 +00:00
|
|
|
.speech-bubble__owner= t 'admin.instances.public_comment'
|
|
|
|
|
2019-01-08 12:39:49 +00:00
|
|
|
%hr.spacer/
|
|
|
|
|
2020-04-28 17:39:16 +00:00
|
|
|
%div.action-buttons
|
|
|
|
%div
|
2020-12-14 08:06:34 +00:00
|
|
|
- if @instance.domain_allow
|
|
|
|
= link_to t('admin.domain_allows.undo'), admin_domain_allow_path(@instance.domain_allow), class: 'button button--destructive', data: { confirm: t('admin.accounts.are_you_sure'), method: :delete }
|
|
|
|
- elsif @instance.domain_block
|
|
|
|
= link_to t('admin.domain_blocks.edit'), edit_admin_domain_block_path(@instance.domain_block), class: 'button'
|
|
|
|
= link_to t('admin.domain_blocks.undo'), admin_domain_block_path(@instance.domain_block), class: 'button'
|
2019-01-08 12:39:49 +00:00
|
|
|
- else
|
|
|
|
= link_to t('admin.domain_blocks.add_new'), new_admin_domain_block_path(_domain: @instance.domain), class: 'button'
|