Remove extra stats block
This commit is contained in:
parent
5610587046
commit
6fe1660669
|
@ -56,12 +56,11 @@
|
||||||
.row__information-board
|
.row__information-board
|
||||||
.information-board__section
|
.information-board__section
|
||||||
%span= t 'about.user_count_before'
|
%span= t 'about.user_count_before'
|
||||||
%strong= number_with_delimiter @instance_presenter.user_count
|
%strong= number_to_human @instance_presenter.user_count
|
||||||
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
||||||
.information-board__section
|
.information-board__section
|
||||||
%span= t 'about.status_count_before'
|
%strong= number_to_human @instance_presenter.active_user_count
|
||||||
%strong= number_with_delimiter @instance_presenter.status_count
|
%span= t 'about.active_count_after'
|
||||||
%span= t 'about.status_count_after', count: @instance_presenter.status_count
|
|
||||||
.row__mascot
|
.row__mascot
|
||||||
.landing-page__mascot
|
.landing-page__mascot
|
||||||
.floats.float-1
|
.floats.float-1
|
||||||
|
@ -93,12 +92,11 @@
|
||||||
.row__information-board
|
.row__information-board
|
||||||
.information-board__section
|
.information-board__section
|
||||||
%span= t 'about.user_count_before'
|
%span= t 'about.user_count_before'
|
||||||
%strong= number_with_delimiter @instance_presenter.user_count
|
%strong= number_to_human @instance_presenter.user_count
|
||||||
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
||||||
.information-board__section
|
.information-board__section
|
||||||
%span= t 'about.status_count_before'
|
%strong= number_to_human @instance_presenter.active_user_count
|
||||||
%strong= number_with_delimiter @instance_presenter.status_count
|
%span= t 'about.active_count_after'
|
||||||
%span= t 'about.status_count_after', count: @instance_presenter.status_count
|
|
||||||
.row__mascot
|
.row__mascot
|
||||||
.landing-page__mascot
|
.landing-page__mascot
|
||||||
= image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('elephant_ui_plane.svg'), alt: ''
|
= image_tag @instance_presenter.mascot&.file&.url || asset_pack_path('elephant_ui_plane.svg'), alt: ''
|
||||||
|
@ -129,22 +127,3 @@
|
||||||
= link_to about_more_path do
|
= link_to about_more_path do
|
||||||
= t('about.learn_more')
|
= t('about.learn_more')
|
||||||
= fa_icon 'angle-double-right'
|
= fa_icon 'angle-double-right'
|
||||||
|
|
||||||
.hero-widget__footer
|
|
||||||
.hero-widget__footer__column
|
|
||||||
%h4= t 'about.administered_by'
|
|
||||||
|
|
||||||
= account_link_to @instance_presenter.contact_account
|
|
||||||
|
|
||||||
.hero-widget__footer__column
|
|
||||||
%h4= t 'about.server_stats'
|
|
||||||
|
|
||||||
%div{ style: 'display: flex' }
|
|
||||||
.hero-widget__counter{ style: 'width: 50%' }
|
|
||||||
%strong= number_to_human @instance_presenter.user_count, strip_insignificant_zeros: true
|
|
||||||
%span= t 'about.user_count_after', count: @instance_presenter.user_count
|
|
||||||
.hero-widget__counter{ style: 'width: 50%' }
|
|
||||||
%strong= number_to_human @instance_presenter.active_user_count, strip_insignificant_zeros: true
|
|
||||||
%span
|
|
||||||
= t 'about.active_count_after'
|
|
||||||
%abbr{ title: t('about.active_footnote') } *
|
|
||||||
|
|
Loading…
Reference in New Issue