]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+about/about-follows/about-follows.component.html
Fix video right check
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-follows / about-follows.component.html
1 <div class="row">
2 <h1 class="visually-hidden" i18n>Follows</h1>
3
4 <div class="col-xl-6 col-md-12">
5 <h2 i18n class="subtitle">Follower instances ({{ followersPagination.totalItems }})</h2>
6
7 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>
8
9 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
10 {{ follower}}
11 </a>
12
13 <button i18n class="show-more" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button>
14 </div>
15
16 <div class="col-xl-6 col-md-12">
17 <h2 i18n class="subtitle">Following instances ({{ followingsPagination.totalItems }})</h2>
18
19 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
20
21 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
22 {{ following }}
23 </a>
24
25 <button i18n class="show-more" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button>
26 </div>
27
28 </div>