diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-10 16:22:55 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-10 16:23:55 +0100 |
commit | a004ff172638083d69ed1028d18c9b6222d24da6 (patch) | |
tree | 6b61eab4035672c4503b84684dc3d470aeb4e20f /client/src/app/+accounts/accounts.component.html | |
parent | 333952bc6478358ef6979b35d8dc215283b4717e (diff) | |
download | PeerTube-a004ff172638083d69ed1028d18c9b6222d24da6.tar.gz PeerTube-a004ff172638083d69ed1028d18c9b6222d24da6.tar.zst PeerTube-a004ff172638083d69ed1028d18c9b6222d24da6.zip |
Add naive aggregation from channels to account display of subscribers
Diffstat (limited to 'client/src/app/+accounts/accounts.component.html')
-rw-r--r-- | client/src/app/+accounts/accounts.component.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/+accounts/accounts.component.html b/client/src/app/+accounts/accounts.component.html index be40b63ca..57498e98c 100644 --- a/client/src/app/+accounts/accounts.component.html +++ b/client/src/app/+accounts/accounts.component.html | |||
@@ -28,7 +28,9 @@ | |||
28 | > | 28 | > |
29 | </my-user-moderation-dropdown> | 29 | </my-user-moderation-dropdown> |
30 | </div> | 30 | </div> |
31 | <div class="actor-followers" i18n>{account.followersCount, plural, =1 {1 subscriber} other {{{ account.followersCount }} subscribers}}</div> | 31 | <div class="actor-followers" i18n-title [title]="subscribersDisplayFor(account.followersCount) + ' to the account actor'"> |
32 | {{ subscribersDisplayFor(naiveAggregatedSubscribers) }} | ||
33 | </div> | ||
32 | </div> | 34 | </div> |
33 | 35 | ||
34 | <my-subscribe-button *ngIf="videoChannels" [account]="account" [videoChannels]="videoChannels"></my-subscribe-button> | 36 | <my-subscribe-button *ngIf="videoChannels" [account]="account" [videoChannels]="videoChannels"></my-subscribe-button> |