diff options
author | Chocobozzz <me@florianbigard.com> | 2022-11-07 11:25:31 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-11-07 11:25:31 +0100 |
commit | 1a6304ceb9b1deaa1304023e9df8bdfb426d7541 (patch) | |
tree | 3cc1b512221d79597b711e0dad910aa546e78c58 /client/src/app/+about/about-follows/about-follows.component.html | |
parent | f30ef8cf9888255a58d0d319b741ae27b456185e (diff) | |
download | PeerTube-1a6304ceb9b1deaa1304023e9df8bdfb426d7541.tar.gz PeerTube-1a6304ceb9b1deaa1304023e9df8bdfb426d7541.tar.zst PeerTube-1a6304ceb9b1deaa1304023e9df8bdfb426d7541.zip |
Improve instance follow display
Diffstat (limited to 'client/src/app/+about/about-follows/about-follows.component.html')
-rw-r--r-- | client/src/app/+about/about-follows/about-follows.component.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/+about/about-follows/about-follows.component.html b/client/src/app/+about/about-follows/about-follows.component.html index f16f8bd71..6516b595d 100644 --- a/client/src/app/+about/about-follows/about-follows.component.html +++ b/client/src/app/+about/about-follows/about-follows.component.html | |||
@@ -2,21 +2,21 @@ | |||
2 | <h1 class="visually-hidden" i18n>Follows</h1> | 2 | <h1 class="visually-hidden" i18n>Follows</h1> |
3 | 3 | ||
4 | <div class="col-xl-6 col-md-12"> | 4 | <div class="col-xl-6 col-md-12"> |
5 | <h2 i18n class="subtitle">Follower instances ({{ followersPagination.totalItems }})</h2> | 5 | <h2 i18n class="subtitle">Followers of {{ instanceName }} ({{ followersPagination.totalItems }})</h2> |
6 | 6 | ||
7 | <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div> | 7 | <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">{{ instanceName }} does not have followers.</div> |
8 | 8 | ||
9 | <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer"> | 9 | <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer"> |
10 | {{ follower}} | 10 | {{ follower }} |
11 | </a> | 11 | </a> |
12 | 12 | ||
13 | <button i18n class="show-more" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button> | 13 | <button i18n class="show-more" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button> |
14 | </div> | 14 | </div> |
15 | 15 | ||
16 | <div class="col-xl-6 col-md-12"> | 16 | <div class="col-xl-6 col-md-12"> |
17 | <h2 i18n class="subtitle">Following instances ({{ followingsPagination.totalItems }})</h2> | 17 | <h2 i18n class="subtitle">Subscriptions of {{ instanceName }} ({{ followingsPagination.totalItems }})</h2> |
18 | 18 | ||
19 | <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div> | 19 | <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">{{ instanceName }} does not have subscriptions.</div> |
20 | 20 | ||
21 | <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> | 21 | <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer"> |
22 | {{ following }} | 22 | {{ following }} |