]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+about/about-follows/about-follows.component.html
Add hide list
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-follows / about-follows.component.html
1 <div class="row">
2 <h1 class="sr-only" i18n>Follows</h1>
3 <div class="col-xl-6 col-md-12">
4 <h2 i18n class="subtitle">Followers instances</h2>
5
6 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>
7
8 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
9 {{follower}}
10 </a>
11 <ng-container *ngIf="showMoreFollowers">
12 <a *ngFor="let follower of moreFollowers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
13 {{ follower }}
14 </a>
15 </ng-container>
16
17 <a i18n class="showMore" *ngIf="!showMoreFollowers" (click)="loadAllFollowers()" (click)="showMoreFollowers=true">Show full list</a>
18 <a i18n class="showMore" *ngIf="showMoreFollowers" (click)= "showMoreFollowers=false">Show less</a>
19 </div>
20
21 <div class="col-xl-6 col-md-12">
22 <h2 i18n class="subtitle">Followings instances</h2>
23
24 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
25
26 <<<<<<< HEAD
27 ||||||| parent of 932e04c48 (Change button)
28 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance does not have instances followings.</div>
29
30 =======
31 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance does not have instances followings.</div>
32
33 >>>>>>> 932e04c48 (Change button)
34 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
35 {{ following }}
36 </a>
37 <ng-container *ngIf="showMoreFollowings">
38 <a *ngFor="let following of moreFollowings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
39 {{ following }}
40 </a>
41 </ng-container>
42
43 <a i18n class="showMore" *ngIf="!showMoreFollowings" (click)="loadAllFollowings()" (click)="showMoreFollowings=true">Show full list</a>
44 <a i18n class="showMore" *ngIf="showMoreFollowings" (click)="showMoreFollowings=false">Show less</a>
45 </div>
46
47 </div>