discourse-follow/assets/javascripts/discourse/connectors/user-card-metadata/follow-statistics-user-card.hbs
Osama Sayegh 4c979e70ba FIX: Respect settings that control follow page visibility when showing follow counters (#6)
This commit hides/shows the Followers/Following counts shown on user cards and profiles based on whether the current user can or can't see the followers/following pages under user profile (controlled by the `follow_(following|follower)_visible` site settings).
2021-10-07 20:34:07 +03:00

6 lines
262 B
Handlebars

{{#if user.total_following}}
<h3>{{i18n "user.following.label"}}<span class="value">{{user.total_following}}</span></h3>
{{/if}}
{{#if user.total_followers}}
<h3>{{i18n "user.followers.label"}}<span class="value">{{user.total_followers}}</span></h3>
{{/if}}