]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-follows/about-follows.component.html
Reduce pending job waiting
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-follows / about-follows.component.html
CommitLineData
49c4dd7e 1<div class="row">
c9e3565d 2 <h1 class="sr-only" i18n>Follows</h1>
a6dbbf03 3 <div class="col-xl-6 col-md-12">
db8b2f56 4 <h2 i18n class="subtitle">Follower instances ({{ followersPagination.totalItems }})</h2>
a6dbbf03 5
97ecddae 6 <div i18n class="no-results" *ngIf="followersPagination.totalItems === 0">This instance does not have instances followers.</div>
a6dbbf03
C
7
8 <a *ngFor="let follower of followers" [href]="buildLink(follower)" target="_blank" rel="noopener noreferrer">
0d7c7314 9 {{ follower}}
a6dbbf03 10 </a>
0d7c7314
C
11
12 <button i18n class="showMore" *ngIf="!loadedAllFollowers && canLoadMoreFollowers()" (click)="loadAllFollowers()">Show full list</button>
a6dbbf03
C
13 </div>
14
15 <div class="col-xl-6 col-md-12">
1fa87405 16 <h2 i18n class="subtitle">Following instances ({{ followingsPagination.totalItems }})</h2>
a6dbbf03 17
dc5bb5ce 18 <div i18n class="no-results" *ngIf="followingsPagination.totalItems === 0">This instance is not following any other.</div>
a6dbbf03
C
19
20 <a *ngFor="let following of followings" [href]="buildLink(following)" target="_blank" rel="noopener noreferrer">
21 {{ following }}
22 </a>
0d7c7314 23
931d3430 24 <button i18n class="show-more" *ngIf="!loadedAllFollowings && canLoadMoreFollowings()" (click)="loadAllFollowings()">Show full list</button>
a6dbbf03
C
25 </div>
26
27</div>